File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed
Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- derivation :
15- - llzk-sys-rs
16- - llzk-rs
14+ # derivation:
15+ # - llzk-sys-rs
16+ # - llzk-rs
17+ BUILD_TARGET :
18+ - release
19+ - dev
1720 steps :
1821 - uses : actions/checkout@v4
1922 with :
3235 with :
3336 name : veridise-public
3437 authToken : ' ${{ secrets.CACHIX_PUBLIC_TOKEN }}'
35- - name : Build and test ${{ matrix.derivation }}
36- run : nix --print-build-logs build '.?submodules=1#${{ matrix.derivation }}'
38+ - name : Set nix environment
39+ uses : nicknovitski/nix-develop@v1
40+ env :
41+ CI_BOT_PAT : " ${{ secrets.CI_BUILD_TOKEN }}"
42+ - name : Build in "${{ matrix.BUILD_TARGET }}" mode
43+ run : cargo build --profile ${{ matrix.BUILD_TARGET }} --all-features
44+ - name : Run tests in "${{ matrix.BUILD_TARGET }}" mode
45+ run : cargo test --profile ${{ matrix.BUILD_TARGET }} --all-features
46+ # - name: Build and test ${{ matrix.derivation }}
47+ # run: nix --print-build-logs build '.?submodules=1#${{ matrix.derivation }}'
3748
3849 clippy :
3950 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments