Newer
Older
name: CMake
on:
push:
branches: [ develop, master ]
pull_request:
branches: [ develop, master ]
#env:
# # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
# matrix:
# BUILD_TYPE: [ Release, Debug ]
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.6', '3.9' ]
env:
BUILD_TYPE: [ Release, Debug ]
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Ubuntu with Python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: src
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Pip install
run: |
python3 -m pip install numpy
python3 -m pip install matplotlib
- name: Check versions
run: |
which python3
python3 --version
which cmake
cmake --version
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: >
cmake
-S ${{github.workspace}}/src
-B ${{github.workspace}}/build
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install
-DBUILD_EXAMPLES=ON
- name: Build
run: >
cmake
--build ${{github.workspace}}/build
--config ${{env.BUILD_TYPE}}
- name: Install
run: cmake --install ${{github.workspace}}/build
- name: Look around
run: ls -l ${{github.workspace}}
- name: Tests without environment setup
run: |
${{github.workspace}}/install/bin/mcpltool --help
${{github.workspace}}/install/bin/pymcpltool --help
${{github.workspace}}/install/bin/ssw2mcpl --help
${{github.workspace}}/install/bin/mcpl2ssw --help
${{github.workspace}}/install/bin/phits2mcpl --help
${{github.workspace}}/install/bin/mcpl2phits --help