-
Notifications
You must be signed in to change notification settings - Fork 63
61 lines (55 loc) · 1.85 KB
/
e2e.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
name: e2e
on:
workflow_call:
workflow_dispatch:
env:
WORKSPACE_NAME: ${{ vars.E2E_WORKSPACE_NAME }}
BUCKET_NAME: ${{ secrets.E2E_BUCKET_NAME }}
USER_USERNAME: ${{ vars.E2E_USER_USERNAME }}
NEPTUNE_API_TOKEN: ${{ secrets.E2E_USER_API_TOKEN }}
ADMIN_USERNAME: ${{ vars.E2E_ADMIN_USERNAME }}
ADMIN_NEPTUNE_API_TOKEN: ${{ secrets.E2E_ADMIN_API_TOKEN }}
SERVICE_ACCOUNT_NAME: ${{ vars.E2E_SERVICE_ACCOUNT_NAME }}
jobs:
e2e:
environment: Production
timeout-minutes: 75
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.12" ]
os: [ ubuntu, windows, macos ]
runs-on: ${{ matrix.os }}-latest
name: 'standard (${{ matrix.os }} - py${{ matrix.python-version }})'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.client_payload.pull_request.head.ref }}
- name: Test
uses: ./.github/actions/test-e2e
env:
NEPTUNE_API_TOKEN: ${{ secrets.E2E_SERVICE_ACCOUNT_API_TOKEN }}
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
module: "not integrations"
name: "standard"
report_job: 'standard (${{ matrix.os }} - py${{ matrix.python-version }})'
codecov-token: ${{ secrets.CODECOV_TOKEN }}
e2e-tests-notify:
needs: [ e2e, ]
runs-on: ubuntu-latest
if: (success() || failure()) && github.ref == 'refs/heads/master'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.client_payload.pull_request.head.ref }}
- name: Notify
uses: ./.github/actions/workflow-notify-v2
with:
slack-webhook: ${{ secrets.E2E_REGULAR_SLACK_WEBHOOK }}
neptune-ref: ${{ github.ref }}