File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ import { setupBazel } from "../bazel.js"
4
4
5
5
jest . setTimeout ( 300000 )
6
6
describe ( "setup-bazel" , ( ) => {
7
+ if ( process . platform === "linux" && process . arch === "arm64" ) {
8
+ it ( "should skip bazel tests on Linux arm64" , ( ) => {
9
+ expect ( true ) . toBe ( true )
10
+ } )
11
+ return
12
+ }
7
13
it ( "should setup bazel" , async ( ) => {
8
14
const installInfo = await setupBazel ( "" , "" , process . arch )
9
15
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import { setupInfer } from "../infer.js"
8
8
jest . setTimeout ( 300000 )
9
9
10
10
describe ( "setup-infer" , ( ) => {
11
- if ( process . platform === "win32" ) {
12
- it ( "should skip infer tests on windows " , ( ) => {
11
+ if ( process . platform === "win32" || ( process . platform === "linux" && process . arch === "arm64" ) ) {
12
+ it ( "should skip infer tests on Windows and Linux arm64 " , ( ) => {
13
13
expect ( true ) . toBe ( true )
14
14
} )
15
15
return
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ import { setupSccache } from "../sccache.js"
4
4
5
5
jest . setTimeout ( 300000 )
6
6
describe ( "setup-sccache" , ( ) => {
7
+ if ( process . platform === "linux" && process . arch === "arm64" ) {
8
+ it ( "should skip sccache tests on Linux arm64" , ( ) => {
9
+ expect ( true ) . toBe ( true )
10
+ } )
11
+ return
12
+ }
13
+
7
14
it ( "should setup sccache" , async ( ) => {
8
15
const installInfo = await setupSccache ( "" , "" , process . arch )
9
16
You can’t perform that action at this time.
0 commit comments