Skip to content

Commit

Permalink
use alpine image in sanitizer
Browse files Browse the repository at this point in the history
  • Loading branch information
AviAvni committed Dec 26, 2023
1 parent 2ff1098 commit baa42f6
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/sanitize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
sanitize-test:
runs-on: ubuntu-latest
container: falkordb/falkordb-build:latest
container: falkordb/falkordb-build:alpine
steps:

- name: Safe dir
Expand Down Expand Up @@ -44,7 +44,9 @@ jobs:

- name: Unit tests
id: unit_tests
run: make unit-tests CLEAR_LOGS=0 SAN=address
run:
source ./venv/bin/activate
make unit-tests CLEAR_LOGS=0 SAN=address
continue-on-error: true

- uses: actions/upload-artifact@v3
Expand All @@ -55,7 +57,9 @@ jobs:

- name: Flow tests
id: flow_tests
run: make flow-tests CLEAR_LOGS=0 SAN=address
run:
source ./venv/bin/activate
make flow-tests CLEAR_LOGS=0 SAN=address
continue-on-error: true

- uses: actions/upload-artifact@v3
Expand All @@ -66,7 +70,9 @@ jobs:

- name: TCK tests
id: tck_tests
run: make tck-tests CLEAR_LOGS=0 SAN=address
run:
source ./venv/bin/activate
make tck-tests CLEAR_LOGS=0 SAN=address
continue-on-error: true

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit baa42f6

Please sign in to comment.