From cb582b45c2f9c59a5030311b916b869244b0fcee Mon Sep 17 00:00:00 2001 From: Efe Date: Thu, 11 Jan 2024 17:24:22 +0100 Subject: [PATCH] initial attempt workflow for reqcheckscript --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f283f96b98ee..1b95d93ab9ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,7 +55,7 @@ jobs: workflow: - '.github/workflows/**' - name: Build gridpack - if: steps.changes.outputs.powheg1 == 'true' || steps.changes.outputs.workflow 'true' + if: steps.changes.outputs.powheg1 == 'true' || steps.changes.outputs.workflow == 'true' uses: nick-fields/retry@v2 with: max_attempts: 5 @@ -64,7 +64,7 @@ jobs: command: docker run --rm -v /cvmfs:/cvmfs -v $PWD:$PWD -w $PWD gitlab-registry.cern.ch/cms-cloud/cmssw-docker/cc7-cms bash bin/Powheg/test/test_build.sh -r ${{ matrix.cmssw_release }} -a ${{ matrix.scram_arch }} -p ${{ matrix.proc }} - name: Check pwg-stat.dat - if: steps.changes.outputs.powheg1 == 'true' || steps.changes.outputs.workflow 'true' + if: steps.changes.outputs.powheg1 == 'true' || steps.changes.outputs.workflow == 'true' run: git diff --exit-code bin/Powheg/test/pwg-stat.dat.${{ matrix.proc }}_${{ matrix.scram_arch }}_${{ matrix.cmssw_release }} - name: Create Pull Request