-
Notifications
You must be signed in to change notification settings - Fork 1.2k
302 lines (294 loc) · 10.9 KB
/
build.yml
File metadata and controls
302 lines (294 loc) · 10.9 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
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
name: Build And Test
on:
pull_request:
branches:
- develop
- "feat/*"
- "feat-*"
merge_group:
types: [ checks_requested ]
branches:
- develop
- "feat/*"
- "feat-*"
# to automatically cancel the running workflow for same PR.
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
run-workflow:
name: PR Workflow
# If any dependent jobs fails, this WF skips which won't block merging PRs
# calling always() is required for this WF to run all the time
if: github.repository_owner == 'aws' && always()
runs-on: ubuntu-latest
needs:
- make-pr
- validate-schema
- integration-tests
- smoke-and-functional-tests
- docker-disabled
steps:
- name: report-failure
if : |
needs.make-pr.result != 'success' ||
needs.validate-schema.result != 'success' ||
needs.integration-tests.result != 'success' ||
needs.smoke-and-functional-tests.result != 'success' ||
needs.docker-disabled.result != 'success'
run: exit 1
- name: report-success
run: exit 0
make-pr:
name: make pr / ${{ matrix.os }} / ${{ matrix.python }}
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python:
- "3.10"
- "3.11"
steps:
# This allows temp file creation on drive D, which won't trigger windows defender scan and leads to faster IO
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
if: ${{ matrix.os == 'windows-latest' }}
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
cache-python: false
- name: Install and activate Python
run: bash tests/setup-python-uv.sh ${{ matrix.python }}
shell: bash
- run: test -f "./.github/ISSUE_TEMPLATE/Bug_report.md" # prevent Bug_report.md from being renamed or deleted
- run: make pr
validate-schema:
name: Validate JSON schema
if: github.repository_owner == 'aws'
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
cache-python: false
- name: Install and activate Python
run: bash tests/setup-python-uv.sh 3.11
- run: make init
- run: |
diff <( cat schema/samcli.json ) <( python -m schema.make_schema && cat schema/samcli.json ) && \
echo "No changes found." && \
exit 0 # exit if schema is unchanged
echo "The generated schema differs from that in the PR. Please run 'make schema'."
exit 1
name: Generate and compare the schema
shell: bash
integration-tests:
name: Integ / ${{ matrix.os }} / ${{ matrix.python }} / ${{ matrix.tests_config.name }}
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
env:
AWS_DEFAULT_REGION: us-east-1
SAM_CLI_DEV: "1"
CARGO_LAMBDA_VERSION: 0.17.1
CARGO_INCREMENTAL: 0 # disable incremental compilation
CARGO_TERM_COLOR: always # enable colors in Cargo output
CI: true
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python:
- "3.10"
- "3.11"
# folders that is commented below requires credentials, no need to spare time to run them
tests_config:
- name: "integ-buildcmd-arm64"
params: "-n 2 --reruns 3 tests/integration/buildcmd/test_build_cmd_arm64.py"
- name: "integ-buildcmd-main"
params: "-n 2 --reruns 3 tests/integration/buildcmd/test_build_cmd_dotnet.py tests/integration/buildcmd/test_build_cmd_provided.py tests/integration/buildcmd/test_build_cmd_rust.py tests/integration/buildcmd/test_build_cmd_python.py tests/integration/buildcmd/test_build_cmd_node.py"
- name: "integ-buildcmd-java"
params: "-n 2 --reruns 5 tests/integration/buildcmd/test_build_cmd_java.py"
- name: "integ-buildcmd-other"
params: "-n 2 --reruns 3 tests/integration/buildcmd --ignore=tests/integration/buildcmd/test_build_cmd_arm64.py --ignore=tests/integration/buildcmd/test_build_cmd_dotnet.py --ignore=tests/integration/buildcmd/test_build_cmd_provided.py --ignore=tests/integration/buildcmd/test_build_cmd_rust.py --ignore=tests/integration/buildcmd/test_build_cmd_python.py --ignore=tests/integration/buildcmd/test_build_cmd_node.py --ignore=tests/integration/buildcmd/test_build_cmd_java.py"
#- "delete"
#- "deploy"
- name: "integ-all-other"
params: "-n 2 --reruns 3 tests/integration/init tests/integration/local tests/integration/pipeline tests/integration/root tests/integration/scripts tests/integration/telemetry tests/integration/docs --ignore=tests/integration/local/invoke/test_invoke_durable.py --ignore=tests/integration/local/start_api/test_start_api_durable.py --ignore=tests/integration/local/start_lambda/test_start_lambda_durable.py"
- name: "durable-functions"
params: "--reruns 3 tests/integration/local/invoke/test_invoke_durable.py tests/integration/local/start_api/test_start_api_durable.py tests/integration/local/start_lambda/test_start_lambda_durable.py"
#- "list"
#- "logs"
#- "package"
#- "publish"
#- "sync"
#- "traces"
#- "validate"
exclude:
- os: windows-latest
tests_config:
name: "durable-functions"
steps:
- uses: actions/checkout@v6
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
if: ${{ matrix.os == 'windows-latest' }}
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
cache-python: false
- name: Install Python versions
run: bash tests/setup-python-uv.sh 3.9 3.10 3.11 3.12 3.13 3.14 ${{ matrix.python }}
- uses: actions/setup-go@v6
with:
go-version: '1.19'
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
- uses: actions/setup-node@v6
with:
node-version: 24
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: |
8
11
17
21
25
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
# Install and configure Rust & Cargo Lambda
- name: Install Rust toolchain and cargo-lambda
if: ${{ matrix.os == 'ubuntu-latest' }}
run: bash tests/install-rust.sh --uv
- name: Init samdev
run: make init
- name: uv install setuptools in Python3.12
run: uv pip install --break-system-packages --python "$(uv python find 3.12)" --upgrade pip setuptools
- name: Run integration tests for ${{ matrix.tests_config.name }}
run: pytest -vv ${{ matrix.tests_config.params }}
env:
FORCE_RUN_DOCKER_TEST: ${{ matrix.tests_config.name == 'durable-functions' && '1' || '' }}
smoke-and-functional-tests:
name: ${{ matrix.tests_config.name }} / ${{ matrix.tests_config.os }} / ${{ matrix.python }}
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.tests_config.os }}
env:
AWS_DEFAULT_REGION: us-east-1
SAM_CLI_DEV: "1"
CARGO_LAMBDA_VERSION: 0.17.1
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
python:
- "3.10"
- "3.11"
tests_config:
- name: "Smoke & Functional Tests - All"
os: ubuntu-latest
params: "-n 4 tests/smoke tests/functional"
env_vars: "all"
- name: "Smoke Tests - First Third"
os: windows-latest
params: "-n 4 tests/smoke"
env_vars: "first-third"
- name: "Smoke Tests - Second Third"
os: windows-latest
params: "-n 4 tests/smoke"
env_vars: "second-third"
- name: "Smoke Tests - Third Third & Functional Tests"
os: windows-latest
params: "-n 4 tests/smoke tests/functional"
env_vars: "third-third"
steps:
- uses: actions/checkout@v6
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
if: ${{ matrix.os == 'windows-latest' }}
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
cache-python: false
- name: Install and activate Python
run: bash tests/setup-python-uv.sh ${{ matrix.python }}
- name: Init samdev
run: make init
- name: Run ${{ matrix.tests_config.name }}
run: pytest -vv ${{ matrix.tests_config.params }}
env:
SMOKE_TEST_SUBSET: ${{ matrix.tests_config.env_vars }}
docker-disabled:
name: Docker-disabled Tests / ${{ matrix.os }}
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
env:
SAM_CLI_DEV: "1"
CI: true
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v6
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
if: ${{ matrix.os == 'windows-latest' }}
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
cache-python: false
- name: Install Python versions
shell: bash
run: bash tests/setup-python-uv.sh 3.9 3.10 3.11 3.12 3.13 3.14
- name: Stop Docker Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
: sudo systemctl stop docker
sudo systemctl stop docker.service
sudo systemctl stop docker.socket
- name: Stop Docker Windows
if: ${{ matrix.os == 'windows-latest' }}
shell: pwsh
run: stop-service docker
- name: Init samdev
run: make init
- name: uv install setuptools in Python3.12
run: uv pip install --break-system-packages --python "$(uv python find 3.12)" --upgrade pip setuptools
- name: Check Docker not Running
run: docker info
id: run-docker-info
continue-on-error: true
- name: Report failure
if: steps.run-docker-info.outcome == 'success'
run: exit 1
- name: Run tests without Docker
run: pytest -vv tests/integration/buildcmd/test_build_cmd_python.py -k TestBuildCommand_PythonFunctions_WithoutDocker