Fix CI, add wheels, adjust for SCM policy #91
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: Build and test core | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build_core: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-11] | |
include: | |
- os: ubuntu-20.04 | |
- os: ubuntu-20.04 | |
compiler: "clang" | |
- os: windows-2019 | |
cmake_generator: "-G \"Visual Studio 16 2019\" -A x64" | |
- os: windows-2019 | |
cmake_generator: "-G \"Visual Studio 16 2019\" -A Win32" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Elevate privileges | |
if: ${{ !contains( matrix.os, 'windows') }} | |
run: | | |
echo "PRIVLEDGES=sudo" >> $GITHUB_ENV | |
- name: Install clang | |
if: ${{ matrix.compiler == 'clang' }} | |
run: | | |
sudo apt-get update | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install clang | |
echo "CC=/usr/bin/clang" >> $GITHUB_ENV | |
echo "CXX=/usr/bin/clang++" >> $GITHUB_ENV | |
- uses: './.github/actions/build_core_dependencies' | |
with: | |
privileges: $PRIVLEDGES | |
cmake_generator: ${{ matrix.cmake_generator }} | |
- name: Build dlisio | |
shell: bash | |
run: | | |
cmake -S . -B build \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \ | |
-DBUILD_PYTHON=OFF \ | |
${{ matrix.cmake_generator }} | |
- name: Install dlisio | |
shell: bash | |
run: | | |
$PRIVLEDGES cmake \ | |
--build build \ | |
--parallel \ | |
--target install \ | |
--config Release | |
- name: Test Core | |
shell: bash | |
run: | | |
cd build | |
ctest -C Release --output-on-failure |