Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ejohnstown committed May 15, 2024
1 parent 8670cb8 commit 624372e
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/kyber.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Fancy Kyber Tests
name: Kyber Tests

on:
push:
Expand Down Expand Up @@ -29,18 +29,21 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- name: Build wolfssl
uses: wolfSSL/actions-build-autotools-project@v1
with:
path: wolfssl
configure: --enable-wolfssh --enable-cryptonly --disable-examples --disable-crypttests
install: true
- name: Install wolfssl source
run: git clone --depth 1 "https://github.com/wolfssl/wolfssl"

- name: Build and install wolfssl
working-directory: wolfssl
run: |
configure --enable-wolfssh --enable-cryptonly --disable-examples --disable-crypttests
make
sudo make install
build_wolfssh:
name: Build wolfssh
runs-on: ubuntu-latest
timeout-minutes: 4
needs: build_wolfssl build_liboqs
needs: [build_wolfssl, build_liboqs]
steps:
- name: Install wolfSSH
run: git clone --depth 1 "https://github.com/wolfssl/wolfssh"
Expand Down

0 comments on commit 624372e

Please sign in to comment.