Skip to content

Commit

Permalink
ci: temporarily disable cross-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
cilki committed Jun 2, 2024
1 parent 59bd0d5 commit f3bea8d
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,28 @@ jobs:
fail-fast: false
matrix:
target:
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
- i686-unknown-linux-gnu
# TODO: re-enable these. Problems arise with cross-rs because the base
# image doesn't have libgtk-4-dev...
# - aarch64-unknown-linux-gnu
# - aarch64-unknown-linux-musl
# - i686-unknown-linux-gnu
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
container:
image: ghcr.io/cross-rs/${{ matrix.target }}:latest
options: --user=root
# - x86_64-unknown-linux-musl
steps:
- name: Install dependencies
run: |
apt-get update
apt-get install -y libudev-dev libgtk-4-dev libglib2.0-dev
sudo apt-get update
sudo apt-get install -y libudev-dev libgtk-4-dev libglib2.0-dev
- uses: actions/checkout@v4
with:
fetch-tags: true

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true

- uses: actions-rs/cargo@v1
with:
command: build
Expand Down

0 comments on commit f3bea8d

Please sign in to comment.