File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ jobs:
190190
191191 ui :
192192 name : Compiler UI
193- runs-on : macos-13
193+ runs-on : ubuntu-latest
194194 needs :
195195 - fmt
196196 - lint
@@ -218,7 +218,7 @@ jobs:
218218 key : cargo-${{ github.job }}-${{ matrix.name }}-${{ hashFiles('**/Cargo.lock') }}
219219
220220 - name : Run UI tests
221- run : cargo run --features=run --bin=test-ui
221+ run : cargo run --features=run,gnustep-1-7 --bin=test-ui
222222
223223 - name : Check diff
224224 if : ${{ always() }}
Original file line number Diff line number Diff line change @@ -41,6 +41,12 @@ block2 = { path = "../block2" }
4141objc2 = { path = " ../objc2" }
4242objc2-foundation = { path = " ../../framework-crates/objc2-foundation" }
4343
44+ # To make CI work
45+ [target .'cfg(not(target_vendor = "apple"))' .dependencies ]
46+ block2 = { path = " ../block2" , features = [" gnustep-1-7" ] }
47+ objc2 = { path = " ../objc2" , features = [" gnustep-1-7" ] }
48+ objc2-foundation = { path = " ../../framework-crates/objc2-foundation" , features = [" gnustep-1-7" ] }
49+
4450[[bin ]]
4551name = " test-ui"
4652required-features = [" run" ]
You can’t perform that action at this time.
0 commit comments