Skip to content

Commit

Permalink
Refactor terminal to be more backend agnostic
Browse files Browse the repository at this point in the history
  • Loading branch information
melody-rs committed Feb 23, 2024
1 parent 10f4fd2 commit 87c05fc
Show file tree
Hide file tree
Showing 14 changed files with 679 additions and 577 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-steam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
Expand All @@ -48,7 +48,7 @@ jobs:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
Expand All @@ -73,7 +73,7 @@ jobs:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
Expand All @@ -46,7 +46,7 @@ jobs:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
Expand All @@ -70,7 +70,7 @@ jobs:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
targets: wasm32-unknown-unknown
components: rust-src
- name: Download and install Trunk binary
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo check --all-features
Expand All @@ -45,7 +45,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
targets: wasm32-unknown-unknown
components: rust-src
- name: Rust Cache
Expand All @@ -64,7 +64,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo test --workspace
Expand All @@ -82,7 +82,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
components: rustfmt
- name: Rust Cache
uses: Swatinem/rust-cache@v2
Expand All @@ -101,7 +101,7 @@ jobs:
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-14
toolchain: nightly-2024-02-23
components: clippy
- name: Rust Cache
uses: Swatinem/rust-cache@v2
Expand Down
Loading

0 comments on commit 87c05fc

Please sign in to comment.