test CI #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Continuous Integration ASTex' | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build-linux: | |
name: 'On Linux' | |
runs-on: colibris | |
steps: | |
- uses: actions/checkout@v1 | |
- name: 'Trying to compile ASTex on Linux' | |
run: | | |
mkdir Build | |
cd Build | |
cmake .. | |
cmake --build . --parallel 8 | |
build-OsX: | |
name: 'On Mac' | |
runs-on: MyPortMac | |
steps: | |
- uses: actions/checkout@v1 | |
- name: 'Trying to compile ASTEx on mac' | |
run: | | |
mkdir Build | |
cd Build | |
cmake .. | |
cmake --build . --parallel 8 | |
build-windows: | |
name: 'On Windows' | |
runs-on: meinau | |
steps: | |
- uses: actions/checkout@v1 | |
- name: 'Trying to compile ASTex on Windows' | |
run: | | |
mkdir Build | |
cd Build | |
cmake .. "-DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.cmake" | |
cmake --build . |