Skip to content

Commit

Permalink
Sync
Browse files Browse the repository at this point in the history
  • Loading branch information
vlvovch committed Sep 25, 2024
1 parent b78f1b2 commit b0c67e5
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@ jobs:

env:
prefix: bin/examples/
suffix: ''

steps:
- uses: actions/checkout@v2

- if: ${{ matrix.prefix }}
run: echo "prefix=${{ matrix.prefix }}" >> $GITHUB_ENV
- if: ${{ matrix.prefix }}
run: echo "suffix=.exe" >> $GITHUB_ENV

# - name: Install Qt
# uses: WillBrennan/yaqti
Expand Down Expand Up @@ -76,39 +79,39 @@ jobs:
- name: CalculationTmu
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/CalculationTmu
run: ${prefix}CalculationTmu${suffix}

- name: BagModelFit
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/BagModelFit 0.50 0.100 0.301 0.005
run: ${prefix}BagModelFit${suffix} 0.50 0.100 0.301 0.005

- name: cpc1HRGTDep0
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/cpc1HRGTDep 0
run: ${prefix}cpc1HRGTDep${suffix} 0

- name: cpc1HRGTDep1
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/cpc1HRGTDep 1
run: ${prefix}cpc1HRGTDep${suffix} 1

- name: cpc1HRGTDep2
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/cpc1HRGTDep 2
run: ${prefix}cpc1HRGTDep${suffix} 2

- name: cpc3chi2NEQ
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/cpc3chi2NEQ 0
run: ${prefix}cpc3chi2NEQ${suffix} 0

- name: cpc4mcHRG
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/cpc4mcHRG 1 100
run: ${prefix}cpc4mcHRG${suffix} 1 100

- name: PCE-Saha-LHC
working-directory: ${{github.workspace}}/build
shell: bash
run: ${prefix}/PCE-Saha-LHC
run: ${prefix}PCE-Saha-LHC${suffix}

0 comments on commit b0c67e5

Please sign in to comment.