From 1df1d31b1218800c7b936ce736a8bc1fcc6c614c Mon Sep 17 00:00:00 2001 From: Volodymyr Vovchenko Date: Wed, 25 Sep 2024 14:03:57 -0500 Subject: [PATCH] Sync --- .github/workflows/cmake.yml | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 55aea4d..bba1851 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -18,7 +18,18 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, ubuntu-20.04, macos-13, macos-latest] + os: + - ubuntu-latest + prefix: "bin/examples/" + - ubuntu-20.04 + prefix: "bin/examples/" + - macos-13 + prefix: "bin/examples/" + - macos-latest + prefix: "bin/examples/" + - windows-latest + prefix: "bin/examples/Release/" + qts: [6.2.0, 5.15.2] steps: @@ -68,39 +79,39 @@ jobs: - name: CalculationTmu working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/CalculationTmu + run: ${{matrix.os.prefix}}/CalculationTmu - name: BagModelFit working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/BagModelFit 0.50 0.100 0.301 0.005 + run: ${{matrix.os.prefix}}/BagModelFit 0.50 0.100 0.301 0.005 - name: cpc1HRGTDep0 working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/cpc1HRGTDep 0 + run: ${{matrix.os.prefix}}/cpc1HRGTDep 0 - name: cpc1HRGTDep1 working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/cpc1HRGTDep 1 + run: ${{matrix.os.prefix}}/cpc1HRGTDep 1 - name: cpc1HRGTDep2 working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/cpc1HRGTDep 2 + run: ${{matrix.os.prefix}}/cpc1HRGTDep 2 - name: cpc3chi2NEQ working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/cpc3chi2NEQ 0 + run: ${{matrix.os.prefix}}/cpc3chi2NEQ 0 - name: cpc4mcHRG working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/cpc4mcHRG 1 100 + run: ${{matrix.os.prefix}}/cpc4mcHRG 1 100 - name: PCE-Saha-LHC working-directory: ${{github.workspace}}/build shell: bash - run: bin/examples/PCE-Saha-LHC + run: ${{matrix.os.prefix}}/PCE-Saha-LHC