-
Notifications
You must be signed in to change notification settings - Fork 21
58 lines (50 loc) · 1.26 KB
/
mainline_e2e_test.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
name: Mainline E2E Test
on:
workflow_dispatch:
push:
branches:
- 'mainline'
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
MainlineLinuxE2ETest:
name: Linux E2E Test
permissions:
id-token: write
contents: read
uses: aws-deadline/.github/.github/workflows/reusable_e2e_test.yml@mainline
secrets: inherit
with:
repository: ${{ github.event.repository.name }}
branch: mainline
environment: mainline
os: linux
concurrency:
group: linuxe2e
MainlineWindowsE2ETest:
name: Windows E2E Test
permissions:
id-token: write
contents: read
uses: aws-deadline/.github/.github/workflows/reusable_e2e_test.yml@mainline
secrets: inherit
with:
repository: ${{ github.event.repository.name }}
branch: mainline
environment: mainline
os: windows
concurrency:
group: windowse2e