-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (44 loc) · 1.13 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
on:
pull_request:
branches:
- master
push:
branches:
- master
name: ci
jobs:
check-pr:
name: validate commits
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- run: git fetch origin master
- uses: flux-framework/pr-validator@master
ci-checks:
runs-on: ubuntu-latest
env:
TAP_DRIVER_QUIET: 1
FLUX_TEST_TIMEOUT: 300
DOCKER_REPO: fluxrm/flux-coral2
FLUX_TEST_VALGRIND: t
timeout-minutes: 30
strategy:
matrix:
image: ["el9", "noble"]
arguments: ["--distcheck", ""]
fail-fast: false
name: ${{ matrix.image }} ${{ matrix.arguments }}
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: docker-run-checks
run: ./src/test/docker/docker-run-checks.sh ${{ matrix.arguments }} -i ${{ matrix.image }} --
- name: annotate errors
if: failure() || cancelled()
run: src/test/checks-annotate.sh