Skip to content

Commit

Permalink
Merge pull request #3 from bigbrett/add-basic-ci
Browse files Browse the repository at this point in the history
Add basic ci
  • Loading branch information
billphipps authored Apr 10, 2024
2 parents d1e4073 + 63968b9 commit 5d37548
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Build and Test

on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

# pull and build wolfssl
- name: Checkout wolfssl
uses: actions/checkout@master
with:
repository: wolfssl/wolfssl
path: wolfssl

# pull and build wolhsm
- name: Checkout wolfhsm
uses: actions/checkout@master
with:
repository: wolfssl/wolfhsm
path: wolfhsm

# Build examples
- name: Build POSIX TCP server
run: ls && cd posix/tcp/wh_server_tcp && make WOLFSSL_DIR=../../../wolfssl WOLFHSM_DIR=../../../wolfhsm
- name: Build POSIX TCP client
run: cd posix/tcp/wh_client_tcp && make WOLFSSL_DIR=../../../wolfssl WOLFHSM_DIR=../../../wolfhsm

# Start the server in the background
- name: Run POSIX TCP server
run: |
cd posix/tcp/wh_server_tcp
./Build/wh_server_tcp.elf &
TCP_SERVER_PID=$!
echo "TCP_SERVER_PID=$TCP_SERVER_PID" >> $GITHUB_ENV
# Run the client that connects to the server
- name: Run POSIX TCP client
run: |
cd posix/tcp/wh_client_tcp
./Build/wh_client_tcp.elf
# Optional: Kill the server process if it doesn't exit on its own
- name: Cleanup POSIX TCP server
if: always()
run: kill $TCP_SERVER_PID || true


0 comments on commit 5d37548

Please sign in to comment.