File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : Continuous integration in containers
2
- on : [push, pull_request, workflow_dispatch]
2
+ on : [push, workflow_dispatch]
3
3
4
4
jobs :
5
5
Containerized-CI :
6
6
runs-on : ubuntu-22.04
7
7
strategy :
8
8
fail-fast : false
9
9
matrix :
10
- compiler : [ifort, ifx ]
10
+ compiler : [ifort]
11
11
python-version : [3.11]
12
12
include :
13
13
# Flags and KGOs for Intel Fortran Compiler Classic
@@ -139,15 +139,16 @@ jobs:
139
139
python plot_test_outputs.py
140
140
fi
141
141
cd data/outputs/UKMO
142
- tar --ignore-failed-read -czf outputs.${{ matrix.compiler }}.UKMO.tgz cosp2_output.um_global.nc \
143
- cosp2_output_um.nc *.png cosp2_output.um_global.${{ matrix.compiler }}.out
142
+ # tar --ignore-failed-read -czf outputs.${{ matrix.compiler }}.UKMO.tgz cosp2_output.um_global.nc \
143
+ # cosp2_output_um.nc *.png cosp2_output.um_global.${{ matrix.compiler }}.out
144
144
ls -lh
145
+ more cosp2_output.um_global.${{ matrix.compiler }}.out
145
146
# ##############################################################################
146
147
# Make output files available if any test fails
147
148
# ##############################################################################
148
- - name : Upload output file if test fails
149
- if : failure()
150
- uses : actions/upload-artifact@v4.3.3
151
- with :
152
- name : outputs.${{ matrix.compiler }}.UKMO.tgz
153
- path : driver/data/outputs/UKMO/outputs.${{ matrix.compiler }}.UKMO.tgz
149
+ # - name: Upload output file if test fails
150
+ # if: failure()
151
+ # uses: actions/upload-artifact@v4.3.3
152
+ # with:
153
+ # name: outputs.${{ matrix.compiler }}.UKMO.tgz
154
+ # path: driver/data/outputs/UKMO/outputs.${{ matrix.compiler }}.UKMO.tgz
You can’t perform that action at this time.
0 commit comments