Skip to content

Update

Update #3

Workflow file for this run

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
echo "@@@ " ${{ matrix.TYPE }}
if ([[ ${{ matrix.TYPE }} == "Debug" ]]); \
then echo "SKIP_TEST=True" >> "$GITHUB_ENV"; \
else export "SKIP_TEST=False" >> "$GITHUB_ENV"; 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 .