File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,10 @@ jobs:
110
110
runs-on : ${{ matrix.target.runner }}
111
111
container :
112
112
image : ghcr.io/inko-lang/ci:fedora
113
+ env :
114
+ # This is needed because when setting an explicit target, "ring" looks for
115
+ # `aarch64-linux-musl-gcc` instead of using `musl-gcc`.
116
+ CC_aarch64_unknown_linux_musl : musl-gcc
113
117
steps :
114
118
- uses : actions/checkout@v4
115
119
- uses : actions/cache@v4
@@ -121,7 +125,7 @@ jobs:
121
125
- name : Build the compiler
122
126
run : INKO_RT="${PWD}/target/${{ matrix.target.triple }}/debug" cargo build -p inko
123
127
- name : Run the tests
124
- run : ' cd std && ../target/${{ matrix.target.triple }}/ debug/inko test --opt=${{ matrix.level }} --target=${{ matrix.name }}'
128
+ run : ' cd std && ../target/debug/inko test --opt=${{ matrix.level }} --target=${{ matrix.target .name }}'
125
129
126
130
compiler-mac :
127
131
strategy :
You can’t perform that action at this time.
0 commit comments