Updated Windows runner to 2025 #108
Workflow file for this run
This file contains hidden or 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: Upload Conan packages | |
| env: | |
| CONAN_LOGIN_USERNAME_OSP: ${{ secrets.osp_artifactory_usr }} | |
| CONAN_PASSWORD_OSP: ${{ secrets.osp_artifactory_pwd }} | |
| CONAN_REVISIONS_ENABLED: 1 | |
| CONAN_NON_INTERACTIVE: True | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| linux: | |
| name: Linux | |
| runs-on: ${{matrix.os}} | |
| env: | |
| CC: gcc-${{ matrix.compiler_version }} | |
| CXX: g++-${{ matrix.compiler_version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| build_type: [Debug, Release] | |
| compiler_version: [9] | |
| compiler_libcxx: [libstdc++11] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate Dockerfile | |
| run: | | |
| mkdir /tmp/proxyfmu-builder-docker | |
| cat <<'EOF' >/tmp/proxyfmu-builder-docker/Dockerfile | |
| FROM conanio/gcc${{ matrix.compiler_version }}-ubuntu16.04 | |
| ENV CONAN_LOGIN_USERNAME_OSP=${{ secrets.osp_artifactory_usr }} | |
| ENV CONAN_PASSWORD_OSP=${{ secrets.osp_artifactory_pwd }} | |
| ENV LIBCOSIM_RUN_TESTS_ON_CONAN_BUILD=1 | |
| COPY entrypoint.sh / | |
| ENTRYPOINT /entrypoint.sh | |
| EOF | |
| - name: Generate entrypoint.sh | |
| run: | | |
| cat <<'EOF' >/tmp/proxyfmu-builder-docker/entrypoint.sh | |
| #!/bin/bash -v | |
| set -eu | |
| cd /mnt/source | |
| conan remote add osp https://osp.jfrog.io/artifactory/api/conan/conan-local --force | |
| REFNAME="${GITHUB_REF#refs/*/}" | |
| VERSION="v$(<version.txt)" | |
| if [[ $GITHUB_REF == refs/tags/* ]] && [[ $REFNAME == $VERSION ]]; then CHANNEL="stable" | |
| elif [[ $REFNAME == master ]]; then CHANNEL="testing" | |
| else | |
| SHORT_REFNAME="${REFNAME:0:40}" | |
| CHANNEL="testing-${SHORT_REFNAME//\//_}" | |
| fi | |
| conan create \ | |
| -s build_type=${{ matrix.build_type }} \ | |
| -s compiler.version=${{ matrix.compiler_version }} \ | |
| -s compiler.libcxx=${{ matrix.compiler_libcxx }} \ | |
| -b missing \ | |
| --update \ | |
| --user=osp \ | |
| --channel=${CHANNEL} \ | |
| . | |
| conan upload --confirm --remote=osp '*' | |
| EOF | |
| chmod 0755 /tmp/proxyfmu-builder-docker/entrypoint.sh | |
| - name: Build Docker image | |
| run: docker build -t proxyfmu-builder /tmp/proxyfmu-builder-docker/ | |
| - name: Build cosim | |
| run: | | |
| docker run --rm --env GITHUB_REF="$GITHUB_REF" -v $(pwd):/mnt/source:ro proxyfmu-builder | |
| windows: | |
| name: Windows | |
| runs-on: ${{matrix.os}} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-2019] | |
| build_type: [Debug, Release] | |
| timeout-minutes: 120 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Conan | |
| uses: turtlebrowser/get-conan@main | |
| - name: Configure Conan | |
| run: | | |
| conan profile detect | |
| conan remote add osp https://osp.jfrog.io/artifactory/api/conan/conan-local --force | |
| - name: Conan create | |
| shell: bash | |
| run: | | |
| REFNAME="${GITHUB_REF#refs/*/}" | |
| VERSION="v$(<version.txt)" | |
| if [[ $GITHUB_REF == refs/tags/* ]] && [[ $REFNAME == $VERSION ]]; then CHANNEL="stable" | |
| elif [[ $REFNAME == master ]]; then CHANNEL="testing" | |
| else | |
| SHORT_REFNAME="${REFNAME:0:40}" | |
| CHANNEL="testing-${SHORT_REFNAME//\//_}" | |
| fi | |
| conan create \ | |
| -s build_type=${{ matrix.build_type }} \ | |
| -b missing \ | |
| --update \ | |
| --user=osp \ | |
| --channel=${CHANNEL} \ | |
| . | |
| - name: Conan upload | |
| run: conan upload --confirm --remote osp '*' |