-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathintegration-desktop-targeting.yml
More file actions
43 lines (38 loc) · 1.25 KB
/
integration-desktop-targeting.yml
File metadata and controls
43 lines (38 loc) · 1.25 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
name: Desktop Targeting Integration Tests
on:
push:
branches:
- main
pull_request:
merge_group:
types: [checks_requested]
jobs:
test:
strategy:
fail-fast: false
matrix:
channel: [release, beta, nightly]
split: [0, 1]
name: "Desktop Targeting (${{ matrix.channel }} ${{ matrix.split }})"
runs-on: ubuntu-24.04
permissions:
contents: read
env:
FIREFOX_CHANNEL: ${{ matrix.channel }}
PYTEST_ARGS: -k FIREFOX_DESKTOP -m run_targeting -n 4 --reruns 1 --splits 2 --split ${{ matrix.split }} --base-url https://nginx/nimbus/
PYTEST_BASE_URL: https://nginx/nimbus/
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/check-changed-paths
id: check-paths
with:
paths: "experimenter/ application-services/"
- uses: ./.github/actions/setup-cached-build
if: steps.check-paths.outputs.should-run == 'true'
- uses: ./.github/actions/run-integration-test
if: steps.check-paths.outputs.should-run == 'true'
with:
make-args: FIREFOX_CHANNEL=${{ matrix.channel }}
artifact-name: desktop-targeting-${{ matrix.channel }}-${{ matrix.split }}-test-report