Skip to content

Commit

Permalink
Rename and simpily "Build and Test" workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
reedacartwright committed Jul 14, 2023
1 parent bfd2ae2 commit 6d3c115
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 51 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Build and Test"

on:
push:
branches:
- main
- master
- develop
pull_request:
branches:
- main
- master

jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v1
- name: Install Dependencies
- run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
gcc-11 g++-11 \
libboost-all-dev \
libeigen3-dev
- name: Full Build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
directory: build/debug
setup-options: -Db_test=true --buildtype=debug -Db_coverage=false -Db_benchmark=false
options: --verbose
meson-version: 0.61.2
- name: Run Unit Tests
uses: BSFishy/meson-build@v1.0.3
with:
action: test
directory: build/debug
setup-options: -Db_test=true --buildtype=debug -Db_coverage=false -Db_benchmark=false
options: --verbose
meson-version: 0.61.2
51 changes: 0 additions & 51 deletions .github/workflows/meson.yml

This file was deleted.

0 comments on commit 6d3c115

Please sign in to comment.