feat: use comfy dd116abfc48e8023bb425c2dd5bd954ee99d7a9c #102
Workflow file for this run
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: Unstable Tests | |
on: | |
pull_request_target: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
paths: | |
- '**.py' | |
- '**.json' | |
- 'tox.ini' | |
- '.github/workflows/maintests.yml' | |
- '.github/workflows/prtests.yml' | |
- '.github/workflows/release.yml' | |
jobs: | |
build: | |
runs-on: self-hosted | |
env: | |
HORDELIB_TESTING: "no-cuda" | |
TESTS_ONGOING: "1" | |
strategy: | |
matrix: | |
python: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install tox and any other packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r requirements.dev.txt | |
- name: Run lint/format/mypy check | |
run: tox -e pre-commit | |
- name: Check build_helper.py hordelib imports have no breaking dependency changes | |
run: tox -e test-build-helper | |
- name: Build unit test environment, confirm CUDA is available on host | |
run: tox -e tests -- -k test_cuda | |
- name: Run unit tests | |
run: tox -e tests | |
- name: Create CI webpage of results | |
run: python -m examples.make_index | |
- name: Upload to S3 | |
uses: shallwefootball/s3-upload-action@master | |
id: S3 | |
with: | |
aws_key_id: ${{secrets.S3_BUILD_ARTIFACTS_ACCESS_KEY_ID}} | |
aws_secret_access_key: ${{secrets.S3_BUILD_ARTIFACTS_SECRET_ACCESS_KEY}} | |
aws_bucket: hordelib | |
source_dir: images/ | |
endpoint: ${{secrets.S3_ENDPOINT}} | |
destination_dir: 'unstable/' |