Add packages.pegasus to flake output #10
This file contains 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: "CI" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build-test: | |
name: "Build & test" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout repository | |
uses: actions/checkout@v4 | |
- name: ❄ Prepare nix | |
uses: cachix/install-nix-action@v26 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
log-lines = 1000 | |
- name: Prepare | |
run: | | |
nix develop --command bash -c "cabal update" | |
- name: Build | |
run: | | |
nix develop --command bash -c "cabal build" | |
mkdir -p bin | |
nix develop --command bash -c "cp $(cabal list-bin pegasus) bin" | |
- name: 💾 Upload executables | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pegasus-x86_64-linux | |
path: bin/* | |
- name: Test | |
# NOTE: The ci shell does not contain cardano-node | |
run: | | |
nix develop .#ci --command bash -c "cabal test" |