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 9b3d59c commit f17cb90
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: bin
name: bin

sanity-check:
runs-on: ubuntu-latest
Expand All @@ -30,12 +31,13 @@ jobs:
- uses: actions/checkout@v4
- 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/download-artifact@v4
- name: Run tests
run: cd tests && make some
- uses: actions/upload-artifact@v4
with:
path: tests/*.xml
name: tests-some

nitunit-some:
runs-on: ubuntu-latest
Expand All @@ -45,6 +47,7 @@ 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: git fetch origin # Ensure origin/master is present
- uses: actions/download-artifact@v4
- run: make nitunit-some

test-contrib:
Expand All @@ -54,12 +57,14 @@ jobs:
- uses: actions/checkout@v4
- 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
- uses: actions/download-artifact@v4
- run: make test-contrib

bootstrap-full:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: false # abort
- 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 bootstrap-full
Expand Down

0 comments on commit f17cb90

Please sign in to comment.