Skip to content

Commit f3bea8d

Browse files
committed
ci: temporarily disable cross-rs
1 parent 59bd0d5 commit f3bea8d

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,28 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
target:
33-
- aarch64-unknown-linux-gnu
34-
- aarch64-unknown-linux-musl
35-
- i686-unknown-linux-gnu
33+
# TODO: re-enable these. Problems arise with cross-rs because the base
34+
# image doesn't have libgtk-4-dev...
35+
# - aarch64-unknown-linux-gnu
36+
# - aarch64-unknown-linux-musl
37+
# - i686-unknown-linux-gnu
3638
- x86_64-unknown-linux-gnu
37-
- x86_64-unknown-linux-musl
38-
container:
39-
image: ghcr.io/cross-rs/${{ matrix.target }}:latest
40-
options: --user=root
39+
# - x86_64-unknown-linux-musl
4140
steps:
4241
- name: Install dependencies
4342
run: |
44-
apt-get update
45-
apt-get install -y libudev-dev libgtk-4-dev libglib2.0-dev
43+
sudo apt-get update
44+
sudo apt-get install -y libudev-dev libgtk-4-dev libglib2.0-dev
4645
4746
- uses: actions/checkout@v4
4847
with:
4948
fetch-tags: true
5049

50+
- uses: actions-rs/toolchain@v1
51+
with:
52+
toolchain: nightly
53+
override: true
54+
5155
- uses: actions-rs/cargo@v1
5256
with:
5357
command: build

0 commit comments

Comments
 (0)