Skip to content

Commit

Permalink
Merge pull request #15 from wolfSSL/basic-ci
Browse files Browse the repository at this point in the history
Create build-and-test.yml
  • Loading branch information
billphipps authored Apr 3, 2024
2 parents 43165b3 + 3bffa12 commit 9cbcdf3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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

# Build and test debug build with ASAN
- name: Build and test ASAN DEBUG
run: cd test && make DEBUG=1 ASAN=1 WOLFSSL_DIR=../wolfssl run

# Build and test standard build
- name: Build and test
run: cd test && make WOLFSSL_DIR=../wolfssl run

0 comments on commit 9cbcdf3

Please sign in to comment.