File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,11 +87,11 @@ jobs:
87
87
88
88
test_tier2 :
89
89
name : Test tier2
90
- needs : [test_tier1, style_check]
90
+ # needs: [test_tier1, style_check]
91
91
runs-on : ubuntu-24.04
92
92
strategy :
93
93
fail-fast : true
94
- max-parallel : 12
94
+ max-parallel : 24
95
95
matrix :
96
96
target :
97
97
# FIXME(sparc): this takes much longer to run than any other job, put
Original file line number Diff line number Diff line change 82
82
83
83
cmd=" cargo test --target $target ${LIBC_CI_ZBUILD_STD+" -Zbuild-std" } "
84
84
85
- # Run tests in the `libc` crate
86
85
case " $target " in
87
86
# FIXME(android): unit tests fail to start on Android
88
- # FIXME(s390x): unit tests fail to locate glibc
89
87
* android* ) ;;
88
+ # FIXME(s390x): unit tests fail to locate glibc
90
89
* s390x* ) ;;
90
+ # For everything else, run unit tests in the `libc` crate
91
91
* ) $cmd
92
92
esac
93
93
You can’t perform that action at this time.
0 commit comments