3939 # the `make` environment variable used in compilers.yml causes some rubygems
4040 # tests to fail.
4141 # https://github.com/rubygems/rubygems/issues/4921
42- - echo "GNUMAKEFLAGS=-s -j$((1 + $CIRRUS_CPU))" >> $CIRRUS_ENV
43- print_env_script :
44- - echo "GNUMAKEFLAGS=$GNUMAKEFLAGS"
42+ - echo "GNUMAKEFLAGS=-s -j$((1 + $CIRRUS_CPU))" >> "$CIRRUS_ENV"
43+ - cat "$CIRRUS_ENV"
4544 # Arm containers are executed in AWS's EKS, and it's not yet supporting IPv6
4645 # See https://github.com/aws/containers-roadmap/issues/835
4746 disable_ipv6_script : sudo ./tool/disable_ipv6.sh
@@ -99,9 +98,9 @@ yjit_task:
9998 # the `make` environment variable used in compilers.yml causes some rubygems
10099 # tests to fail.
101100 # https://github.com/rubygems/rubygems/issues/4921
102- - echo "GNUMAKEFLAGS=-s -j$((1 + $CIRRUS_CPU))" >> $CIRRUS_ENV
103- print_env_script :
104- - echo "GNUMAKEFLAGS=$GNUMAKEFLAGS "
101+ - echo "GNUMAKEFLAGS=-s -j$((1 + $CIRRUS_CPU))" >> " $CIRRUS_ENV"
102+ - echo RUST_BACKTRACE=1 >> "$CIRRUS_ENV"
103+ - cat "$CIRRUS_ENV "
105104 # Arm containers are executed in AWS's EKS, and it's not yet supporting IPv6
106105 # See https://github.com/aws/containers-roadmap/issues/835
107106 disable_ipv6_script : sudo ./tool/disable_ipv6.sh
@@ -124,9 +123,9 @@ yjit_task:
124123 else
125124 echo "only running bindgen on clang image"
126125 fi
127- boot_miniruby_script : RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 -e0
128- test_dump_insns_script : RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 --yjit-dump-insns -e0
129- output_stats_script : RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 --yjit-stats -e0
126+ boot_miniruby_script : ./miniruby --yjit-call-threshold=1 -e0
127+ test_dump_insns_script : ./miniruby --yjit-call-threshold=1 --yjit-dump-insns -e0
128+ output_stats_script : ./miniruby --yjit-call-threshold=1 --yjit-stats -e0
130129 full_build_script : source $HOME/.cargo/env && make
131130 cargo_test_script : source $HOME/.cargo/env && cd yjit && cargo test
132131 make_test_script : source $HOME/.cargo/env && make test RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx"
0 commit comments