Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ailrst committed Jan 30, 2024
1 parent 23aaad0 commit a4c0ae6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
timeout-minutes: 10
container:
# Requires repo to have action access in package settings
#
image: ghcr.io/uq-pac/basil-dev:latest
credentials:
username: ${{ github.actor }}
Expand All @@ -23,13 +22,16 @@ jobs:
uses: actions/checkout@v4

- name: Compile BASIL
run: sbt assembly
run: mill compile

- name: Bitvec Tests
run: sbt "testOnly BitVectorAnalysisTests"
run: mill test.testOnly BitVectorAnalysisTests

- name: IntrusiveListTest
run: mill test.testOnly SystemTests IntrusiveListPublicInterfaceTests

- name: System Tests
run: sbt "testOnly *SystemTests -- -z basic_assign_increment/gcc_no_plt_no_pic -z basic_assign_increment/clang_no_plt_no_pic -z secret_write/gcc_no_plt_no_pic"
run: mill test.testOnly *SystemTests -- -z basic_assign_increment/gcc_no_plt_no_pic -z basic_assign_increment/clang_no_plt_no_pic -z secret_write/gcc_no_plt_no_pic



Expand Down

0 comments on commit a4c0ae6

Please sign in to comment.