File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616jobs :
1717 test-build :
1818 strategy :
19+ fail-fast : false
1920 matrix :
2021 include :
2122 - { os: "macos-latest", target: "aarch64-apple-darwin" }
3637 - name : Configure sccache
3738 if : github.event_name != 'release' && github.event_name != 'workflow_dispatch'
3839 run : |
39- echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
40- echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
40+ echo "SCCACHE_GHA_ENABLED=true" >> " $GITHUB_ENV"
41+ echo "RUSTC_WRAPPER=sccache" >> " $GITHUB_ENV"
4142
4243 - name : Setup rust cache action
4344 uses : swatinem/rust-cache@v2
6566
6667 - name : Set build mode
6768 shell : bash
68- run : if [ "${{github.ref_type}}" == "tag" || ${{ github.event_name == 'push' && github.ref_name == 'main' }} ]; then echo "BMODE=release">>"$GITHUB_ENV"; fi
69+ run : if [ "${{github.ref_type}}" == "tag" ] || [ ${{ github.event_name == 'push' && github.ref_name == 'main' }} ]; then echo "BMODE=release">>"$GITHUB_ENV"; fi
6970
7071 - name : Build in ${{env.BMODE || 'debug'}} mode
7172 run : cargo build --verbose --locked --${{env.BMODE}}
You can’t perform that action at this time.
0 commit comments