openGJK/.github/workflows/github-opengjk-examples.yml

34 lines
993 B
YAML
Raw Normal View History

2023-02-14 04:26:12 -08:00
name: Run all demos
run-name: ${{ github.actor }} is running
on: [push]
jobs:
2023-02-14 04:46:38 -08:00
Run_C_example:
2023-02-14 04:44:19 -08:00
runs-on: ubuntu-latest
container: mmontanari/devenv:buildenv-fedora
2023-02-14 04:26:12 -08:00
steps:
- name: Check out repository code
uses: actions/checkout@v3
2023-02-14 04:34:43 -08:00
- run: cmake -E make_directory build
- run: cmake -E chdir build cmake -DCMAKE_BUILD_TYPE=Release ..
- run: cmake --build build
- run: cmake -E chdir build/examples/c/ ./example_lib_opengjk_ce
2023-02-14 05:05:42 -08:00
Run_GO_example:
runs-on: ubuntu-latest
container: mmontanari/devenv:buildenv-fedora
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.15
2023-02-14 05:12:09 -08:00
- run: cd examples/go/openGJK && go build && go test -v
2023-02-14 06:05:20 -08:00
Run_Octave_example:
runs-on: ubuntu-latest
container: gnuoctave/octave:7.3.0
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: cd examples/matlab/; run runme.m