From 36acfbff5022e64ecf2bb57e71c53523629b8f35 Mon Sep 17 00:00:00 2001 From: David Duarte Date: Mon, 26 Feb 2024 22:45:30 +0000 Subject: [PATCH] ci: Add a github action workflow This workflow build liblc3 (linux, linux with meson, wasm) and run the test in the test directory on linux. --- .github/workflows/ci.yaml | 63 +++++++++++++++++++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 64 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..bf39f0b --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,63 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build-linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: gcc -v + - run: make + + build-linux-meson: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + - run: pip install meson ninja + - run: gcc -v + - run: meson setup builddir/ + env: + CC: gcc + - run: meson compile -C builddir/ + + build-wasm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: clang -v + - run: make CC="clang --target=wasm32" + - uses: actions/upload-artifact@v4 + with: + name: liblc3.wasm + path: bin/liblc3.wasm + + test-linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + - run: pip install scipy numpy + - run: gcc -v + - run: make test + + install-python-linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + - run: pip install . diff --git a/.gitignore b/.gitignore index fa2a190..ec11a96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .* !.gitignore +!.github bin build test/build