-
Notifications
You must be signed in to change notification settings - Fork 0
130 lines (111 loc) · 3.69 KB
/
ci.yaml
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name: CI
env:
# Current supported Python version. For applications, there is generally no
# reason to support multiple Python versions, so all actions are run with
# this version. Quote the version to avoid interpretation as a floating
# point number.
PYTHON_VERSION: "3.12"
UV_PYTHON_PREFERENCE: "system"
BUILDKIT_PROGRESS: "plain"
"on":
merge_group: {}
pull_request:
push:
# branches-ignore:
# # These should always correspond to pull requests, so ignore them for
# # the push trigger and let them be triggered by the pull_request
# # trigger, avoiding running the workflow twice. This is a minor
# # optimization so there's no need to ensure this is comprehensive.
# - "dependabot/**"
# - "gh-readonly-queue/**"
# - "renovate/**"
# - "tickets/**"
# - "u/**"
# - "main"
tags:
- "*"
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Run pre-commit
uses: pre-commit/[email protected]
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Run tox
uses: lsst-sqre/run-tox@v1
with:
python-version: ${{ env.PYTHON_VERSION }}
tox-envs: "py,coverage-report,typing"
tox-requirements: requirements/tox.txt
build:
runs-on: ubuntu-latest
needs: [lint, test]
timeout-minutes: 10
# Only do Docker builds of tagged releases and pull requests from ticket
# branches. This will still trigger on pull requests from untrusted
# repositories whose branch names match our tickets/* branch convention,
# but in this case the build will fail with an error since the secret
# won't be set.
if: >
github.event_name != 'merge_group'
&& (
startsWith(github.ref, 'refs/tags/') ||
startsWith(github.head_ref, 'u/tobyj/')
)
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: lsst-sqre/build-and-push-to-ghcr@u/tobyj/docker_target
id: build
with:
image: ${{ github.repository }}
target: runtime-image
github_token: ${{ secrets.GITHUB_TOKEN }}
push: false
# Release -- when PR is merged to main, bump version, make tag, recommit
release:
runs-on: ubuntu-latest
needs: [lint, test]
timeout-minutes: 10
if: >-
github.event.pull_request.closed_at != 0
&& github.event.pull_request.merged == true
steps:
- run: >-
echo "${{ github.head_ref }} merged into ${{ github.ref }}
by {{ github.event.pull_request.merged_by.name }} <{{ github.event.pull_request.merged_by.email }}>"
- uses: actions/checkout@v4
- name: Set up UV
uses: astral-sh/setup-uv@v4
with:
version: "0.5"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install Release Manager
run: >-
uv tool install python-semantic-release
- name: Configure Git
run: |
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}"
- name: Bump Project Version
env:
GIT_COMMIT_AUTHOR: "${{github.actor}} <${{github.actor}}@users.noreply.github.com>"
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >-
semantic-release
version --patch
--no-vcs-release --skip-build --no-changelog