Skip to content

Commit

Permalink
Move zkp-test to daily-test (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa5i authored Nov 29, 2023
1 parent 08afaec commit 1af077f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,12 +363,12 @@ jobs:
- name: check dirty
run: test $(git status --porcelain | wc -l) -eq "0"

zkp-test:
ntls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: config
run: CC=clang ./config --strict-warnings --debug -O1 -fsanitize=memory -DOSSL_SANITIZE_MEMORY enable-ec_elgamal enable-twisted_ec_elgamal enable-bulletproofs enable-nizk enable-zkp-gadget && perl configdata.pm --dump
run: CC=clang ./config --strict-warnings --debug -O1 -fsanitize=memory -DOSSL_SANITIZE_MEMORY && perl configdata.pm --dump
- name: make
run: make -s -j4
- name: make test
Expand All @@ -378,3 +378,16 @@ jobs:
- name: check dirty
run: test $(git status --porcelain | wc -l) -eq "0"

zkp-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: config
run: CC=clang ./config --strict-warnings --debug -O1 -fsanitize=memory -DOSSL_SANITIZE_MEMORY enable-ec_elgamal enable-twisted_ec_elgamal enable-bulletproofs enable-nizk enable-zkp-gadget && perl configdata.pm --dump
- name: make
run: make -s -j4
- name: make clean
run: make clean
- name: check dirty
run: test $(git status --porcelain | wc -l) -eq "0"

4 changes: 4 additions & 0 deletions .github/workflows/run-checker-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ jobs:
no-zlib,
enable-zlib-dynamic,
no-zlib-dynamic,
enable-ntls,
enable-ec_elgamal enable-twisted_ec_elgamal,
enable-bulletproofs,
enable-bulletproofs enable-nizk enable-zkp-gadget enable-ec_elgamal enable-twisted_ec_elgamal,
-DOPENSSL_NO_BUILTIN_OVERFLOW_CHECKING
]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1af077f

Please sign in to comment.