Skip to content

e2e

e2e #1226

Workflow file for this run

name: e2e
on:
workflow_call:
workflow_dispatch:
schedule:
- cron: "0 4 * * *" # Run every day at arbitrary time (4:00 AM UTC)
push:
branches:
- master
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.7", "3.12" ]
os: [ ubuntu, windows ]
include:
- python-version: "3.8"
os: macos
- python-version: "3.12"
os: 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 s3 and not integrations and not management"
name: "standard"
report_job: 'standard (${{ matrix.os }} - py${{ matrix.python-version }})'
codecov-token: ${{ secrets.CODECOV_TOKEN }}
e2e_management:
environment: Production
timeout-minutes: 75
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.12" ]
os: [ ubuntu, windows ]
include:
- python-version: "3.8"
os: macos
- python-version: "3.12"
os: macos
runs-on: ${{ matrix.os }}-latest
name: 'management (${{ 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
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
module: management
name: management
report_job: 'management (${{ matrix.os }} - py${{ matrix.python-version }})'
codecov-token: ${{ secrets.CODECOV_TOKEN }}
e2e-tests-notify:
needs: [ e2e, e2e_management ]
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
with:
slack-webhook: ${{ secrets.E2E_REGULAR_SLACK_WEBHOOK }}