-
Notifications
You must be signed in to change notification settings - Fork 33
75 lines (60 loc) · 2.44 KB
/
Copy pathloongsuite_misc_0.yml
File metadata and controls
75 lines (60 loc) · 2.44 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
# Do not edit this file.
# This file is generated automatically by executing tox -e generate-workflows
name: LoongSuite Misc 0
on:
push:
# LoongSuite feature-branch pushes are covered by pull_request.
branches:
- main
pull_request:
merge_group:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.pull_request.number) || github.ref || github.run_id }}
cancel-in-progress: true
env:
# Set the SHA to the branch name if the PR has a label 'prepare-release' or 'backport'
# otherwise, fall back to a pinned 0.62-compatible core commit.
# The logic below is used during releases and depends on having an equivalent branch name
# in the core repo.
CORE_REPO_SHA: ${{ github.event_name == 'pull_request' && (
contains(github.event.pull_request.labels.*.name, 'prepare-release') && github.event.pull_request.head.ref ||
contains(github.event.pull_request.labels.*.name, 'backport') && github.event.pull_request.base.ref ||
'37dea4bbdb1a3c83b96fc22c2f68a848b4989fb5'
) || '37dea4bbdb1a3c83b96fc22c2f68a848b4989fb5' }}
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w
jobs:
check-license-header:
name: LoongSuite check-license-header
runs-on: loongsuite-python-arc
timeout-minutes: 30
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Run tests
run: tox -c tox-loongsuite.ini -e check-license-header
generate-loongsuite:
name: LoongSuite generate-loongsuite
runs-on: loongsuite-python-arc
timeout-minutes: 30
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Run tests
run: tox -c tox-loongsuite.ini -e generate-loongsuite
- name: Check LoongSuite workflows are up to date
run: tox -e generate-workflows && git diff --exit-code -- .github/workflows/loongsuite_*.yml || (echo 'Generated LoongSuite workflows are out of date, run "tox -e generate-workflows" and commit the changes in this PR.' && exit 1)