Nightly Integration Testing #805
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Integration Testing | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'dev' | |
paths: | |
- 'gato/**' | |
- 'setup.py' | |
- 'pyproject.toml' | |
- 'test/**' | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
branches: | |
- 'main' | |
env: | |
LOW_PRIV_PAT: ${{ secrets.LOW_PRIV_PAT }} | |
ORG_MEMBER_REPO_TOKEN: ${{ secrets.ORG_MEMBER_REPO_TOKEN }} | |
ORG_MEMBER_REPO_WORKFLOW_TOKEN: ${{ secrets.ORG_MEMBER_REPO_WORKFLOW_TOKEN }} | |
ORG_MEMBER_REPO_WORKFLOW_ADMIN_TOKEN: ${{ secrets.ORG_MEMBER_REPO_WORKFLOW_ADMIN_TOKEN }} | |
ORG_ADMIN_REPO_TOKEN: ${{ secrets.ORG_ADMIN_REPO_TOKEN }} | |
ORG_ADMIN_REPO_WORKFLOW_TOKEN: ${{ secrets.ORG_ADMIN_REPO_WORKFLOW_TOKEN }} | |
ORG_ADMIN_REPO_WORKFLOW_ADMIN_TOKEN: ${{ secrets.ORG_ADMIN_REPO_WORKFLOW_ADMIN_TOKEN }} | |
ORG_ADMIN_REPO_WORKFLOW_ADMIN_DELETE_TOKEN: ${{ secrets.ORG_ADMIN_REPO_WORKFLOW_ADMIN_DELETE_TOKEN }} | |
WF_DISPATCH_TOKEN: ${{ secrets.WF_DISPATCH_TOKEN }} | |
RUN_REF: ${{ github.ref }} | |
jobs: | |
SH-Runner-Dispatch: | |
name: Prepare Integration Test SH Runner | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- run: pip install requests | |
- name: Dispatch Runner Event | |
run: python test/runner_helper.py dispatch | |
Integration-Testing: | |
name: Gato Integration Testing | |
needs: SH-Runner-Dispatch | |
if: success() | |
strategy: | |
max-parallel: 1 | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
python-version: ["3.10"] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: | | |
python -m pip install --upgrade pip | |
pip install ".[test]" | |
- name: Kick off integration tests. | |
run: | | |
pytest test/ |