File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8787 uses : Ana06/get-changed-files@v2.2.0
8888 - name : Validate Build
8989 run : |
90+ if [ "${{ matrix.compiler }}" == "intel" ]; then
91+ export SKIP_CI_SPECS="${{ env.SKIP_CI_SPECS }} components/serial-libs/openblas/SPECS/openblas.spec"
92+ fi
9093 . /etc/profile.d/lmod.sh
9194 tests/ci/run_build.py ohpc ${{ steps.files.outputs.added_modified }} --compiler-family ${{ matrix.compiler }}
9295 touch /tmp/empty
@@ -134,6 +137,9 @@ jobs:
134137 - name : Run CI Tests
135138 run : |
136139 export SKIP_CI_SPECS="${{ env.SKIP_CI_SPECS }}${{ env.JOB_SKIP_CI_SPECS }}"
140+ if [ "${{ matrix.compiler }}" == "intel" ]; then
141+ export SKIP_CI_SPECS="${SKIP_CI_SPECS} components/serial-libs/openblas/SPECS/openblas.spec"
142+ fi
137143 . /etc/profile.d/lmod.sh
138144 chown ohpc -R tests
139145 tests/ci/setup_slurm_and_run_tests.sh ohpc ${{ matrix.compiler }} ${{ steps.files.outputs.added_modified }}
Original file line number Diff line number Diff line change 5050skip_ci_specs = []
5151skip_ci_specs_env = os .getenv ('SKIP_CI_SPECS' )
5252if skip_ci_specs_env :
53- skip_ci_specs = skip_ci_specs_env .rstrip ().split (' \n ' )
53+ skip_ci_specs = skip_ci_specs_env .rstrip ().split ()
5454
5555for row in reader :
5656 key = row .pop ('NAME' )
Original file line number Diff line number Diff line change 253253skip_ci_specs = []
254254skip_ci_specs_env = os .getenv ('SKIP_CI_SPECS' )
255255if skip_ci_specs_env :
256- skip_ci_specs = skip_ci_specs_env .rstrip ().split (' \n ' )
256+ skip_ci_specs = skip_ci_specs_env .rstrip ().split ()
257257for spec in skip_ci_specs :
258258 if spec in test_map :
259259 test_map .pop (spec )
You can’t perform that action at this time.
0 commit comments