sdk%feat(nix): add Nix-based devshells (and Docker wrapped counterparts), cross-compilation for Linux, Windows and macOS, x86_64 emulation for CodeQL on arm64 Linux #160
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "dash-pow" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: &paths | |
| - pkgs/pow/** | |
| - pkgs/num/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_pow.yml | |
| - .github/workflows/build_stable.yml | |
| - .github/workflows/build_nightly.yml | |
| - contrib/nix/** | |
| - pyproject.toml | |
| - rust-toolchain.toml | |
| - uv.lock | |
| pull_request: | |
| paths: *paths | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| stable: | |
| uses: ./.github/workflows/build_stable.yml | |
| with: | |
| package: dash-pow | |
| package_dir: pow | |
| features: std | |
| nightly: | |
| uses: ./.github/workflows/build_nightly.yml | |
| with: | |
| package: dash-pow | |
| package_dir: pow | |
| secrets: inherit |