Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Add tests for bearSSL
Browse files Browse the repository at this point in the history
  • Loading branch information
baluchicken committed Mar 4, 2024
1 parent a512058 commit bc38d75
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
sudo cp config.yaml /etc/camblet/config.yaml
sudo cp build/camblet /usr/local/bin/
- name: Run the kernel module
- name: Run the kernel module with kTLS
working-directory: camblet-driver
run: |
sudo modprobe tls
Expand All @@ -76,6 +76,21 @@ jobs:
# ## limits ssh access and adds the ssh public key for the user which triggered the workflow
# limit-access-to-actor: true

- name: Run proxy-wasm smoke test
- name: Run proxy-wasm smoke test with kTLS
uses: ./camblet-driver/.github/actions/smoketest
timeout-minutes: 1

- name: Remove kernel module with kTLS
working-directory: camblet-driver
run: sudo rmmod camblet

- name: Run the kernel module with bearSSL
working-directory: camblet-driver
run: |
sudo rmmod tls
sudo modprobe camblet
sudo dmesg -T
- name: Run proxy-wasm smoke test with bearSSL
uses: ./camblet-driver/.github/actions/smoketest
timeout-minutes: 1

0 comments on commit bc38d75

Please sign in to comment.