Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
privat committed Jun 24, 2024
1 parent 990a590 commit 64ffee3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config
- run: make
- uses: actions/upload-artifact@v4
with:
path: bin

tests-some:
runs-on: ubuntu-latest
Expand All @@ -23,10 +26,19 @@ jobs:
sanity-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make sanity-check

nitunit-some:
runs-on: ubuntu-latest
needs: [build]
steps:
- run: make nitunit-some
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config
- run: make nitunit-some

bootstrap-full:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make bootstrap-full

0 comments on commit 64ffee3

Please sign in to comment.