Compare commits

...

3 Commits

Author SHA1 Message Date
82bf4b6ced fix: Exclude target dir from CI cache to reduce size
Some checks failed
Gitea CI / Run Tests (push) Successful in 41m7s
Gitea CI / Build Linux (push) Failing after 10m19s
2025-12-21 01:00:31 +01:00
f21b74485e fix: Add libssl-dev to CI workflow to resolve openssl-sys build error
Some checks failed
Gitea CI / Build Linux (push) Has been cancelled
Gitea CI / Run Tests (push) Has been cancelled
2025-12-21 00:24:04 +01:00
e3b54f1a21 fix: Use correct package name libwayland-dev for CI
Some checks failed
Gitea CI / Run Tests (push) Failing after 10m8s
Gitea CI / Build Linux (push) Has been skipped
2025-12-21 00:08:11 +01:00

View File

@@ -14,7 +14,7 @@ jobs:
- name: Install System Dependencies
run: |
apt-get update -yq
apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-client-dev nodejs
apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev nodejs libssl-dev
- name: Checkout
uses: actions/checkout@v4
- name: Cache Cargo
@@ -25,7 +25,6 @@ jobs:
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
@@ -41,7 +40,7 @@ jobs:
- name: Install System Dependencies
run: |
apt-get update -yq
apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-client-dev nodejs
apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev nodejs libssl-dev
- name: Checkout
uses: actions/checkout@v4
- name: Cache Cargo
@@ -52,7 +51,6 @@ jobs:
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-