-
Notifications
You must be signed in to change notification settings - Fork 0
206 lines (180 loc) · 5.84 KB
/
versions.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
name: CI
on:
push:
branches:
- qca-qt5
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref }}
- name: Set up python
uses: actions/setup-python@v5
- name: Run pre-commit on codebase
uses: pre-commit/action@v3.0.0
- name: Auto commit action
uses: stefanzweifel/git-auto-commit-action@v5
if: failure()
with:
commit_message: 'ci: auto fixes from pre-commit'
format_and_update_ports:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref }}
fetch-depth: 2
- name: Setup vcpkg
uses: ./.github/actions/setup-vcpkg
with:
vcpkgVersion: latest
vcpkgRoot: /usr/local/vcpkg
vcpkgDownload: /usr/local/vcpkg-downloads
- name: Format vcpkg.json
run: |
vcpkg format-manifest --all $(find . -name "vcpkg.json")
- name: Commit format vcpkg.json
uses: stefanzweifel/git-auto-commit-action@v5
if: success()
with:
commit_message: 'ci: format vcpkg configuration'
file_pattern: vcpkg.json
- name: Exit 1 if vcpkg configuration changes have been detected
if: steps.auto-commit-action.outputs.changes_detected == 'true'
run: |
exit 1
- name: Verify all modules and update hash
run: |
for dir in ports/* ; do
echo "Test to install $dir"
status=0
install_output=$(vcpkg install ${dir##ports/} --overlay-ports=ports) || status=$?
if [[ ! $status -eq 0 ]]; then
echo " Update hash on $dir/portfile.cmake"
expected=$(echo "$install_output" | grep -oP "(?<=Expected hash: ).{128}")
actual=$(echo "$install_output" | grep -oP "(?<=Actual hash: ).{128}")
sed -i "s@${expected}@${actual}@g" "$dir/portfile.cmake"
echo " Expected hash: ${expected}"
echo " Actual hash: ${actual}"
fi
done
- name: Detect hash changes against local
id: filter-hash
uses: dorny/paths-filter@v2
with:
list-files: shell
base: HEAD
filters: |
ports:
- ports/**
- name: Get ports last commit message
if: steps.filter-hash.outputs.ports == 'true'
id: ports-last-commit-message
run: |
echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT
- name: Commit port hash
if: steps.filter-hash.outputs.ports == 'true'
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: ports/*
commit_message: ${{ steps.ports-last-commit-message.outputs.msg }}
push_options: --force
commit_options: --amend --no-edit
skip_fetch: true
- name: Detect ports changes against default branch
id: filter-ports
uses: dorny/paths-filter@v2
with:
list-files: shell
filters: |
ports:
- ports/**
- name: Update versions
if: steps.filter-ports.outputs.ports == 'true'
run: |
for dir in ports/* ; do
vcpkg x-add-version ${dir##ports/} --overlay-ports=./ports \
--x-builtin-registry-versions-dir=./versions/ \
--x-builtin-ports-root=./ports
done
- name: Detect versions changes against local
if: steps.filter-ports.outputs.ports == 'true'
id: filter-versions
uses: dorny/paths-filter@v2
with:
list-files: shell
base: HEAD
filters: |
versions:
- versions/**
- name: Get last commit message
if: steps.filter-versions.outputs.versions == 'true'
id: last-commit-message
run: |
echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT
- name: Commit versions
if: steps.filter-versions.outputs.versions == 'true'
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: versions/*
commit_message: ${{ steps.last-commit-message.outputs.msg }}
push_options: --force
commit_options: --amend --no-edit
skip_fetch: true
release:
name: release
runs-on: ubuntu-latest
permissions:
contents: write
needs: [pre-commit, format_and_update_ports]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
id: semantic
with:
semantic_version: 22.0.5
branches: |
[
'+([0-9])?(.{+([0-9]),x}).x',
'master',
'main',
'next',
'next-major',
{
name: 'beta',
prerelease: true
},
{
name: 'alpha',
prerelease: true
}
]
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
@semantic-release/exec
@semantic-release/github
conventional-changelog-conventionalcommits
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}