Working on Github Actions
This commit is contained in:
parent
42d67523eb
commit
96ef64af69
18
.github/workflows/build-and-test.yml
vendored
18
.github/workflows/build-and-test.yml
vendored
|
@ -99,7 +99,25 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: cmake --build build/ --config ${{ matrix.config.build_type }}
|
run: cmake --build build/ --config ${{ matrix.config.build_type }}
|
||||||
|
|
||||||
|
- name: Install
|
||||||
|
shell: bash
|
||||||
|
run: cmake --install build/
|
||||||
|
|
||||||
- name: Unit Tests
|
- name: Unit Tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: ./build/test/tests
|
run: ./build/test/tests
|
||||||
|
|
||||||
|
- name: Build and Run Hello World
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
mkdir build_hello_world
|
||||||
|
cmake \
|
||||||
|
-S helloworld \
|
||||||
|
-B build_hello_world \
|
||||||
|
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
|
||||||
|
-DRP3D_DOUBLE_PRECISION_ENABLED=${{ matrix.config.double_precision }} \
|
||||||
|
-G "${{ matrix.config.generators }}" \
|
||||||
|
cmake --build build_hello_world/ --config ${{ matrix.config.build_type }}
|
||||||
|
ls -la build_hello_world
|
||||||
|
./build_hello_world/helloworld/helloworld
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user