We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9245921 commit c54e090Copy full SHA for c54e090
1 file changed
.github/workflows/publish.yml
@@ -6,7 +6,12 @@ on:
6
7
jobs:
8
build:
9
- runs-on: ubuntu-22.04
+ runs-on: ${{ matrix.config.os }}
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ config:
14
+ - { os: ubuntu-22.04, compiler: clang-15 }
15
steps:
16
- name: checkout
17
uses: actions/checkout@v4
@@ -22,6 +27,8 @@ jobs:
22
27
run: conan remote add --index 0 odr https://artifactory.opendocument.app/artifactory/api/conan/conan
23
28
- name: conan login
24
29
run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }}
30
+ - name: conan config
31
+ run: conan config install .github/config/${{ matrix.config.os }}-${{ matrix.config.compiler }}/conan
25
32
26
33
- name: get version
34
run: echo "VERSION=${GITHUB_REF_NAME:1}" >> $GITHUB_ENV
0 commit comments