Skip to content

Commit

Permalink
Merge pull request #4776 from input-output-hk/newhoggy/build-all-of-c…
Browse files Browse the repository at this point in the history
…ardano-node-in-ci

Build all of cardano-node in CI
  • Loading branch information
Jimbo4350 authored Jan 12, 2023
2 parents ab4ac08 + 5739f3f commit 8aee278
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,20 @@ jobs:
skip: "${{ secrets.BINARY_CACHE_URI != '' }}"
enable-save: false

- name: Build
- name: Build core components
run: |
# The tests call out to msys2 commands. We generally do not want to mix toolchains, so
# we are very deliberate about only adding msys64 to the path where absolutely necessary.
${{ (runner.os == 'Windows' && '$env:PATH=("C:\msys64\mingw64\bin;{0}" -f $env:PATH)') || '' }}
cabal build cardano-node cardano-cli cardano-node-chairman cardano-submit-api
- name: Build remaining components
run: |
# The tests call out to msys2 commands. We generally do not want to mix toolchains, so
# we are very deliberate about only adding msys64 to the path where absolutely necessary.
${{ (runner.os == 'Windows' && '$env:PATH=("C:\msys64\mingw64\bin;{0}" -f $env:PATH)') || '' }}
cabal build all
- name: Run tests (all)
if: github.event.inputs.tests == 'all'
env:
Expand Down

0 comments on commit 8aee278

Please sign in to comment.