-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
191 lines (177 loc) · 5.84 KB
/
main.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
name: Main
on:
pull_request:
push:
branches:
- main
- beta
- release
- 'release-*'
- 'lts-*'
tags:
- '*'
env:
TURBO_API: http://127.0.0.1:9080
TURBO_TOKEN: this-is-not-a-secret
TURBO_TEAM: myself
concurrency:
group: ci-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
lint:
timeout-minutes: 6
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: ./.github/actions/setup
with:
restore-lint-caches: true
install: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Prettier
run: pnpm lint:prettier
- name: Lint
run: pnpm lint
- name: Check Uncompiled Packages for TypeScript Compilation Errors
run: pnpm check:types
special-build-tests:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: ./.github/actions/setup
with:
restore-broccoli-cache: true
install: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
- if: |
github.event_name == 'pull_request' && (
github.base_ref == 'main' || github.base_ref == 'beta'
)
name: Enable All In progress features
env:
EMBER_DATA_FEATURE_OVERRIDE: ENABLE_ALL_OPTIONAL
run: pnpm test
- if: |
github.event_name == 'pull_request' && (
github.base_ref == 'main' || github.base_ref == 'beta'
)
name: Disabled All In progress features
env:
EMBER_DATA_FEATURE_OVERRIDE: DISABLE_ALL
run: pnpm test
- if: |
github.event_name == 'pull_request' && (
github.base_ref == 'main' || github.base_ref == 'beta'
)
name: Remove All Deprecations
env:
EMBER_DATA_FULL_COMPAT: true
run: pnpm test:production
browser-tests:
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
launcher: [Chrome] # Firefox currently has an issue on ubuntu we cannot replicate on macos 03/29/2023
runs-on: ubuntu-latest
name: Test ${{matrix.launcher}}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: ./.github/actions/setup
with:
github-token: ${{ secrets.GH_PACKAGES_ACCESS_TOKEN }}
restore-broccoli-cache: true
jobs: 2
parallel-build: true
install: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Check for Test Failure Retry
id: retry-test-failures
uses: actions/cache/restore@v3
with:
path: failed-test-log.txt
key: failed-test-log_${{ github.sha }}
- name: Development
run: timeout $BROWSER_TIMEOUT pnpm test
env:
TESTEM_CI_LAUNCHER: ${{ matrix.launcher }}
CI: true
DEBUG: ${{ secrets.ACTIONS_RUNNER_DEBUG == 'true' && 'engine,socket.io*' }}
# DISPLAY_TEST_NAMES: true # uncomment this line to see the test names in the logs
FORCE_COLOR: 2
BROWSER_TIMEOUT: 540
- name: Production
id: run-tests-production
run: timeout $BROWSER_TIMEOUT pnpm test:production
env:
TESTEM_CI_LAUNCHER: ${{ matrix.launcher }}
CI: true
DEBUG: ${{ secrets.ACTIONS_RUNNER_DEBUG == 'true' && 'engine,socket.io*' }}
# DISPLAY_TEST_NAMES: true # uncomment this line to see the test names in the logs
FORCE_COLOR: 2
BROWSER_TIMEOUT: 540
- name: Upload testem logs
if: ${{ always() && steps.run-tests-production.conclusion != 'skipped' }}
uses: actions/upload-artifact@v4
with:
name: client-testem-logs
path: './tests/main/testem.log'
retention-days: 1
- name: Maybe Cache Failures
if: always()
uses: actions/cache/save@v3
with:
path: failed-test-log.txt
key: failed-test-log_${{ github.sha }}
- name: Archive Tests Execution File
uses: actions/upload-artifact@v4
if: (success() || failure()) && steps.retry-test-failures.outputs.cache-hit != 'true'
with:
name: tests-execution-file-partition
path: 'tests/main/test-execution-*.json'
retention-days: 1
lts:
needs: [browser-tests]
strategy:
fail-fast: false
matrix:
scenario: [ember-lts-4.12, ember-lts-4.8, ember-lts-4.4, ember-lts-3.28]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: ./.github/actions/setup
with:
restore-broccoli-cache: true
install: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Basic tests with ${{ matrix.scenario }}
timeout-minutes: 12
env:
CI: true
run: pnpm test:try-one ${{ matrix.scenario }} -- ember test --test-port=0
releases:
timeout-minutes: 12
needs: [browser-tests]
if: |
github.event_name == 'pull_request' && (
github.base_ref == 'main' || github.base_ref == 'beta'
) || github.event_name == 'push' && (
endsWith(github.ref, '/main') || endsWith(github.ref, '/beta')
)
strategy:
fail-fast: false
matrix:
release: [ember-canary, ember-beta]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: ./.github/actions/setup
with:
restore-broccoli-cache: true
install: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Basic tests with ${{ matrix.release }}
env:
CI: true
run: pnpm test:try-one ${{ matrix.release }} -- ember test --test-port=0