Skip to content

Commit

Permalink
cleaning up workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
csegarragonz committed Nov 25, 2021
1 parent 949cb34 commit 135b66d
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 22 deletions.
21 changes: 4 additions & 17 deletions .github/workflows/sanitisers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: "Ping redis"
run: redis-cli -h redis ping
# --- Build with thread sanitising
- name: "Build tests with leak sanitising"
- name: "Build tests with address sanitising"
run: inv dev.sanitise Address
# --- Tests ---
- name: "Run tests with address sanitising on and print to stderr to file"
Expand Down Expand Up @@ -114,11 +114,8 @@ jobs:
- name: "Run tests with undefined sanitising on and print stderr to file"
run: ./bin/faabric_tests > /dev/null # 2> ./ubsan.log
working-directory: /build/faabric/static
# - name: "DELETE ME"
# run: cat ./ubsan.log
# # --- Compare with expected output
# - name: "Compare with expected output"
# run: diff ./ubsan.log ./tests/sanitise/expected_ubsan.log
env:
UBSAN_OPTIONS: "print_stacktrace=1:halt_on_error=1"

leak-sanitiser:
if: github.event.pull_request.draft == false
Expand Down Expand Up @@ -149,13 +146,8 @@ jobs:
run: inv dev.sanitise Leak
# --- Tests ---
- name: "Run tests with leak sanitising on and print stderr to file"
run: ./bin/faabric_tests > /dev/null # 2> ./leaksan.log
run: ./bin/faabric_tests > /dev/null
working-directory: /build/faabric/static
# - name: "DELETE ME"
# run: cat ./leaksan.log
# # --- Compare with expected output
# - name: "Compare with expected output"
# run: diff ./leaksan.log ./tests/sanitise/expected_leaksan.log

memory-sanitiser:
if: github.event.pull_request.draft == false
Expand Down Expand Up @@ -188,8 +180,3 @@ jobs:
- name: "Run tests with memory sanitising on and print stderr to file"
run: ./bin/faabric_tests > /dev/null # 2> ./memsan.log
working-directory: /build/faabric/static
# - name: "DELETE ME"
# run: cat ./memsan.log
# # --- Compare with expected output
# - name: "Compare with expected output"
# run: diff ./memsan.log ./tests/sanitise/expected_memsan.log
1 change: 0 additions & 1 deletion tests/sanitise/expected_addsan.log

This file was deleted.

1 change: 0 additions & 1 deletion tests/sanitise/expected_leaksan.log

This file was deleted.

1 change: 0 additions & 1 deletion tests/sanitise/expected_memsan.log

This file was deleted.

1 change: 0 additions & 1 deletion tests/sanitise/expected_threadsan.log

This file was deleted.

1 change: 0 additions & 1 deletion tests/sanitise/expected_ubsan.log

This file was deleted.

0 comments on commit 135b66d

Please sign in to comment.