Update #1
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: Github CI | |
on: [push, workflow_dispatch] | |
jobs: | |
linux: | |
name: Linux build | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
TYPE: [Release, Debug] | |
PROFILE: ["gcc9"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Installing pre-requisites | |
run: | | |
sudo apt-get update && sudo apt-get install -y openssh-client texlive-binaries perl | |
if ([[ ${{ matrix.TYPE }} == "Debug" ]]); then export SKIP_TEXT="True"; else export SKIP_TEST="False"; fi | |
- name: Conan build | |
run: | | |
echo "skip test?" $SKIP_TEST | |
# conan build -o "dds-fmu/*:with_doc=True" -b missing --update \ | |
# -pr:b $PROFILE -pr:h $PROFILE -s build_type=$TYPE -c tools.build:jobs=2 \ | |
# -c tools.build:skip_test=$SKIP_TEST . |