Skip to content

Commit

Permalink
Run cmake tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Anderson committed Aug 12, 2021
1 parent e7ba8aa commit 01f6bad
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
Framework:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
container:
image: nasafprime/fprime-base:latest

# Steps represent a sequence of tasks that will be executed as part of the job
Expand All @@ -38,7 +38,7 @@ jobs:
Ref:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
container:
image: nasafprime/fprime-base:latest

# Steps represent a sequence of tasks that will be executed as part of the job
Expand All @@ -60,7 +60,7 @@ jobs:
RPI:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
container:
image: nasafprime/fprime-base:latest

# Steps represent a sequence of tasks that will be executed as part of the job
Expand All @@ -82,7 +82,7 @@ jobs:
Integration:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
container:
image: nasafprime/fprime-base:latest

# Steps represent a sequence of tasks that will be executed as part of the job
Expand All @@ -99,4 +99,17 @@ jobs:
with:
name: ci-int-logs
path: ci-logs.tar.gz
retention-days: 5
retention-days: 5

CMake:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: nasafprime/fprime-base:latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs CMake test cases
- run: cd cmake/test
- name: CMake Tests
run: pytest

0 comments on commit 01f6bad

Please sign in to comment.