-
Notifications
You must be signed in to change notification settings - Fork 570
99 lines (92 loc) · 3.3 KB
/
ci.yaml
File metadata and controls
99 lines (92 loc) · 3.3 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: ci
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- develop
- releases/**
merge_group:
concurrency:
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
# Check which files have been updated by the PR
changes:
runs-on: ubuntu-latest
# Set job outputs to values from filter step
outputs:
core: ${{ steps.filter.outputs.core }}
packages: ${{ steps.filter.outputs.packages }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
if: ${{ github.event_name == 'push' || github.event_name == 'merge_group' }}
with:
fetch-depth: 0
# For pull requests it's not necessary to checkout the code
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
id: filter
with:
# For merge group events, compare against the target branch (main)
base: ${{ github.event_name == 'merge_group' && github.event.merge_group.base_ref || '' }}
# For merge group events, use the merge group head ref
ref: ${{ github.event_name == 'merge_group' && github.event.merge_group.head_sha || github.ref }}
# See https://github.com/dorny/paths-filter/issues/56 for the syntax used below
# Don't run if we only modified packages in the
# built-in repository or documentation
filters: |
core:
- .ci/env
packages:
- repos/spack_repo/**
old_repos:
- 'var/spack/repos/**'
list-files: 'shell'
- name: Detected old package repository root directory
if: steps.filter.outputs.old_repos == 'true'
run: |
files=${{ steps.filter.outputs.old_repos_files }}
echo "Error: Packages are no longer allowed under 'var/spack/repos/'."
echo " The following files need to be moved to the appropriate"
echo " subdirectory of 'repos/spack_repo/builtin':"
echo
for f in $files; do
echo " $f"
done
exit 1
unit-tests:
# if: ${{ github.repository == 'spack/spack' && needs.changes.outputs.core == 'true' }}
needs: [ prechecks, changes ]
uses: ./.github/workflows/unit_tests.yaml
secrets: inherit
prechecks:
needs: [ changes ]
uses: ./.github/workflows/prechecks.yml
secrets: inherit
with:
with_packages: ${{ needs.changes.outputs.packages }}
all-prechecks:
needs: [ prechecks ]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Success
run: |
[ "${{ needs.prechecks.result }}" = "success" ] && exit 0
[ "${{ needs.prechecks.result }}" = "skipped" ] && exit 0
echo "GHA checks failed."
exit 1
all:
needs: [ unit-tests ]
if: ${{ always() }}
runs-on: ubuntu-latest
# See https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#needs-context
steps:
- name: Status summary
run: |
[ "${{ needs.unit-tests.result }}" = "success" ] && exit 0
[ "${{ needs.unit-tests.result }}" = "skipped" ] && exit 0
echo "Unit tests failed."
exit 1