feat: use comfyui 839ed33
#358
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: Pull Request 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: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files | |
build: | |
runs-on: self-hosted | |
env: | |
HORDELIB_CI_ONGOING: "1" | |
TESTS_ONGOING: "1" | |
CIVIT_API_TOKEN: ${{ secrets.CIVIT_API_TOKEN }} | |
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 tox | |
- name: Check build_helper.py horde-engine 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/' |