Skip to content

Commit

Permalink
Fix remaining CI test failures on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickpeterse committed Jan 17, 2025
1 parent 651aca0 commit 1ea848c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ jobs:
runs-on: ${{ matrix.target.runner }}
container:
image: ghcr.io/inko-lang/ci:fedora
env:
# This is needed because when setting an explicit target, "ring" looks for
# `aarch64-linux-musl-gcc` instead of using `musl-gcc`.
CC_aarch64_unknown_linux_musl: musl-gcc
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -121,7 +125,7 @@ jobs:
- name: Build the compiler
run: INKO_RT="${PWD}/target/${{ matrix.target.triple }}/debug" cargo build -p inko
- name: Run the tests
run: 'cd std && ../target/${{ matrix.target.triple }}/debug/inko test --opt=${{ matrix.level }} --target=${{ matrix.name }}'
run: 'cd std && ../target/debug/inko test --opt=${{ matrix.level }} --target=${{ matrix.target.name }}'

compiler-mac:
strategy:
Expand Down

0 comments on commit 1ea848c

Please sign in to comment.