We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 623e1d6 commit 6a448e0Copy full SHA for 6a448e0
.github/workflows/rust.yml
@@ -23,4 +23,4 @@ jobs:
23
- name: pico rom symlink
24
run: ln -f -s ../library/blargg_test_roms/cpu_instrs/cpu_instrs.gb pico/rom.bin
25
- name: presubmit
26
- run: ./presubmit
+ run: SKIP_GIT_CHECK=1 ./presubmit
presubmit
@@ -5,11 +5,13 @@ set -ex
5
# Download the test roms
6
$( dirname $0 )/library/download_test_roms
7
8
-CHANGES=$( git diff )
9
-if [ "$CHANGES" != "" ]; then
10
- echo "Untracked Changes"
11
- exit 1;
12
-fi;
+if [ -z $SKIP_GIT_CHECK ]; then
+ CHANGES=$( git diff )
+ if [ "$CHANGES" != "" ]; then
+ echo "Untracked Changes"
+ exit 1;
13
+ fi
14
+fi
15
16
cargo build --all-features
17
cargo build
0 commit comments