File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 72
72
working-directory : domjudge
73
73
run : .github/jobs/configure-checks/setup_configure_image.sh
74
74
75
+ redhat-family :
76
+ needs : build
77
+ strategy :
78
+ matrix :
79
+ version : [latest]
80
+ os : [fedora]
81
+ runs-on : ubuntu-latest
82
+ container :
83
+ image : ${{ matrix.os }}:${{ matrix.version }}
84
+ steps :
85
+ - name : Download Artifact
86
+ uses : actions/download-artifact@v3
87
+ with :
88
+ name : release.tar.gz
89
+ - name : Install git so we get the .github directory
90
+ run : dnf install -y git
91
+ - name : Unpack the "Release" tarball
92
+ run : tar xvf release.tar.gz
93
+ - name : Setup image and run bats tests
94
+ working-directory : domjudge
95
+ run : .github/jobs/configure-checks/setup_configure_image.sh
75
96
# Copy the fedora stuff here and use:
76
97
# if: github.event_name != 'merge_group' on the job level
77
98
# name: Build and Trigger Workflows
You can’t perform that action at this time.
0 commit comments