-
Notifications
You must be signed in to change notification settings - Fork 22
55 lines (49 loc) · 1.28 KB
/
release_e2e_canary.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
name: Release Canary
on:
schedule:
- cron: '0 */3 * * *'
workflow_dispatch:
jobs:
WindowsIntegrationTests:
name: Windows Integration Tests
runs-on: windows-latest
permissions:
contents: read
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Install Hatch
run: |
pip install --upgrade hatch
- name: Run Windows Integration Tests
run: hatch run windows-integ-test
ReleaseLinuxE2ECanary:
name: Release Linux Canary
permissions:
id-token: write
contents: read
uses: aws-deadline/.github/.github/workflows/reusable_canary.yml@mainline
secrets: inherit
with:
repository: ${{ github.event.repository.name }}
branch: release
environment: canary
os: linux
concurrency:
group: releaselinuxe2ecanary
ReleaseWindowsE2ECanary:
name: Release Windows Canary
permissions:
id-token: write
contents: read
uses: aws-deadline/.github/.github/workflows/reusable_canary.yml@mainline
secrets: inherit
with:
repository: ${{ github.event.repository.name }}
branch: release
environment: canary
os: windows
concurrency:
group: releasewindowse2ecanary