File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments