Fix API changes (Boost 1.85) #116
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the develop branch | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains 2 jobs: | |
build-minimal-and-test-ubuntu2004: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Some checks: | |
- name: Check system | |
run: | | |
uname -a | |
cat /etc/lsb-release | |
# Runs a single command using the runners shell | |
- name: Install minimal dependencies | |
run: | | |
sudo apt-get install libboost-all-dev | |
sudo apt-get install ninja-build cmake | |
sudo apt-get install libcamp-dev libclhep-dev libgsl-dev libreadline-dev | |
sudo apt-get install gnuplot-qt | |
sudo apt-get install libqt5core5a libqt5gui5 libqt5widgets5 libqt5svg5 libqt5svg5-dev qt5-default | |
sudo apt-get install doxygen | |
# Runs a set of commands using the runners shell | |
- name: Configure, build, and test | |
run: | | |
echo "Running CI-minimal script..." | |
ls -l $GITHUB_WORKSPACE/.github/workflows/ciscript-minimal.sh | |
bash $GITHUB_WORKSPACE/.github/workflows/ciscript-minimal.sh | |
shell: bash | |
build-minimal-and-test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-22.04 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Some checks: | |
- name: Check system | |
run: | | |
uname -a | |
cat /etc/lsb-release | |
# Runs a single command using the runners shell | |
- name: Install minimal dependencies | |
run: | | |
sudo apt-get install libboost-all-dev | |
sudo apt-get install ninja-build cmake | |
sudo apt-get install libcamp-dev libclhep-dev libgsl-dev libreadline-dev | |
sudo apt-get install gnuplot-qt | |
sudo apt-get install libqt5core5a libqt5gui5 libqt5widgets5 libqt5svg5 libqt5svg5-dev qtbase5-dev qtbase5-dev-tools | |
sudo apt-get install doxygen | |
# Runs a set of commands using the runners shell | |
- name: Configure, build, and test | |
run: | | |
echo "Running CI-minimal script..." | |
ls -l $GITHUB_WORKSPACE/.github/workflows/ciscript-minimal.sh | |
bash $GITHUB_WORKSPACE/.github/workflows/ciscript-minimal.sh | |
shell: bash | |