Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
privat committed Jun 25, 2024
1 parent 2683e43 commit cd42bcd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,19 @@ jobs:
tests-some:
runs-on: ubuntu-24.04
needs: [build]
strategy:
matrix:
engine: [nitcg, nitcg, nitcs, nitcsg, nitce, niti]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y $BASIC_PACKAGES
- uses: actions/download-artifact@v4
- run: chmod +x bin/*
- name: Run tests
run: cd tests && make some
run: true # cd tests && make some
- run: cd tests && ./search_tests_git.sh origin/master HEAD > list
- run: cd tests && ./tests.sh --engine ${{ matrix.engine }} `cat list`
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
Expand All @@ -62,7 +67,7 @@ jobs:
with:
files: "tests/*.xml"
comment_mode: off
check_name: 'tests-some Results'
check_name: tests-some Results ${{ matrix.engine }}

tests-full:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -96,18 +101,13 @@ jobs:
nitunit-some:
runs-on: ubuntu-24.04
needs: [build]
strategy:
matrix:
engine: [nitcg nitcg nitcs nitcsg nitce niti]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y $BASIC_PACKAGES
- run: git fetch origin # Ensure origin/master is present
- uses: actions/download-artifact@v4
- run: chmod +x bin/*
- run: cd tests && ./search_tests_git.sh origin/master HEAD > list
- run: cd tests && ./tests.sh --engine ${{ matrix.engine }} `cat list`
- run: make nitunit-some
- uses: actions/upload-artifact@v4
if: success() || failure()
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y $BASIC_PACKAGES $MORE_PACKAGES
run: apt-get update && apt-get install -y $BASIC_PACKAGES $MORE_PACKAGES
- uses: actions/download-artifact@v4
- run: chmod +x bin/*
- run: bin/nitunit lib/mongodb lib/neo4j lib/postgresql
Expand Down

0 comments on commit cd42bcd

Please sign in to comment.