mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Compare commits
5 Commits
bugfix/cli
...
feat/e2e-t
Author | SHA1 | Date | |
---|---|---|---|
66faa30353 | |||
1dc7b3d88e | |||
7d9d534176 | |||
7db2e909d4 | |||
b27c71a492 |
103
.github/workflows/test-e2e.yml
vendored
Normal file
103
.github/workflows/test-e2e.yml
vendored
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
name: e2e tests
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
matrix:
|
||||||
|
if: github.event.pull_request.draft == false
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version:
|
||||||
|
- '3.10'
|
||||||
|
# - '3.11'
|
||||||
|
include:
|
||||||
|
- pytorch: linux-cuda-11_7
|
||||||
|
os: ubuntu-22.04
|
||||||
|
github-env: $GITHUB_ENV
|
||||||
|
# - pytorch: linux-rocm-5_2
|
||||||
|
# os: ubuntu-22.04
|
||||||
|
# extra-index-url: 'https://download.pytorch.org/whl/rocm5.2'
|
||||||
|
# github-env: $GITHUB_ENV
|
||||||
|
# - pytorch: linux-cpu
|
||||||
|
# os: ubuntu-22.04
|
||||||
|
# extra-index-url: 'https://download.pytorch.org/whl/cpu'
|
||||||
|
# github-env: $GITHUB_ENV
|
||||||
|
# - pytorch: macos-default
|
||||||
|
# os: macOS-12
|
||||||
|
# github-env: $GITHUB_ENV
|
||||||
|
# - pytorch: windows-cpu
|
||||||
|
# os: windows-2022
|
||||||
|
# github-env: $env:GITHUB_ENV
|
||||||
|
name: ${{ matrix.pytorch }} on ${{ matrix.python-version }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
PIP_USE_PEP517: '1'
|
||||||
|
steps:
|
||||||
|
- name: Checkout sources
|
||||||
|
id: checkout-sources
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: set test prompt to main branch validation
|
||||||
|
run: echo "TEST_PROMPTS=tests/validate_pr_prompt.txt" >> ${{ matrix.github-env }}
|
||||||
|
|
||||||
|
- name: setup python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
cache: pip
|
||||||
|
cache-dependency-path: pyproject.toml
|
||||||
|
|
||||||
|
- name: Free up more disk space on the runner
|
||||||
|
# https://github.com/actions/runner-images/issues/2840#issuecomment-1284059930
|
||||||
|
run: |
|
||||||
|
sudo rm -rf /usr/share/dotnet
|
||||||
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
||||||
|
sudo swapoff /mnt/swapfile
|
||||||
|
sudo rm -rf /mnt/swapfile
|
||||||
|
|
||||||
|
- name: install invokeai
|
||||||
|
env:
|
||||||
|
PIP_EXTRA_INDEX_URL: ${{ matrix.extra-index-url }}
|
||||||
|
run: >
|
||||||
|
pip3 install
|
||||||
|
--editable=".[test]"
|
||||||
|
|
||||||
|
- name: run invokeai-configure
|
||||||
|
env:
|
||||||
|
HUGGING_FACE_HUB_TOKEN: ${{ secrets.HUGGINGFACE_TOKEN }}
|
||||||
|
run: >
|
||||||
|
invokeai-configure
|
||||||
|
--yes
|
||||||
|
--default_only
|
||||||
|
--full-precision
|
||||||
|
# can't use fp16 weights without a GPU
|
||||||
|
|
||||||
|
- name: run invokeai
|
||||||
|
id: run-invokeai
|
||||||
|
env:
|
||||||
|
# Set offline mode to make sure configure preloaded successfully.
|
||||||
|
HF_HUB_OFFLINE: 1
|
||||||
|
HF_DATASETS_OFFLINE: 1
|
||||||
|
TRANSFORMERS_OFFLINE: 1
|
||||||
|
INVOKEAI_OUTDIR: ${{ github.workspace }}/results
|
||||||
|
run: >
|
||||||
|
invokeai
|
||||||
|
--no-patchmatch
|
||||||
|
--no-nsfw_checker
|
||||||
|
--precision=float32
|
||||||
|
--always_use_cpu
|
||||||
|
--use_memory_db
|
||||||
|
--outdir ${{ env.INVOKEAI_OUTDIR }}/${{ matrix.python-version }}/${{ matrix.pytorch }}
|
||||||
|
--from_file ${{ env.TEST_PROMPTS }}
|
||||||
|
|
||||||
|
- name: Archive results
|
||||||
|
env:
|
||||||
|
INVOKEAI_OUTDIR: ${{ github.workspace }}/results
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: results
|
||||||
|
path: ${{ env.INVOKEAI_OUTDIR }}
|
36
.github/workflows/test-invoke-pip.yml
vendored
36
.github/workflows/test-invoke-pip.yml
vendored
@ -91,39 +91,3 @@ jobs:
|
|||||||
if: steps.changed-files.outputs.python_any_changed == 'true'
|
if: steps.changed-files.outputs.python_any_changed == 'true'
|
||||||
id: run-pytest
|
id: run-pytest
|
||||||
run: pytest
|
run: pytest
|
||||||
|
|
||||||
# - name: run invokeai-configure
|
|
||||||
# env:
|
|
||||||
# HUGGING_FACE_HUB_TOKEN: ${{ secrets.HUGGINGFACE_TOKEN }}
|
|
||||||
# run: >
|
|
||||||
# invokeai-configure
|
|
||||||
# --yes
|
|
||||||
# --default_only
|
|
||||||
# --full-precision
|
|
||||||
# # can't use fp16 weights without a GPU
|
|
||||||
|
|
||||||
# - name: run invokeai
|
|
||||||
# id: run-invokeai
|
|
||||||
# env:
|
|
||||||
# # Set offline mode to make sure configure preloaded successfully.
|
|
||||||
# HF_HUB_OFFLINE: 1
|
|
||||||
# HF_DATASETS_OFFLINE: 1
|
|
||||||
# TRANSFORMERS_OFFLINE: 1
|
|
||||||
# INVOKEAI_OUTDIR: ${{ github.workspace }}/results
|
|
||||||
# run: >
|
|
||||||
# invokeai
|
|
||||||
# --no-patchmatch
|
|
||||||
# --no-nsfw_checker
|
|
||||||
# --precision=float32
|
|
||||||
# --always_use_cpu
|
|
||||||
# --use_memory_db
|
|
||||||
# --outdir ${{ env.INVOKEAI_OUTDIR }}/${{ matrix.python-version }}/${{ matrix.pytorch }}
|
|
||||||
# --from_file ${{ env.TEST_PROMPTS }}
|
|
||||||
|
|
||||||
# - name: Archive results
|
|
||||||
# env:
|
|
||||||
# INVOKEAI_OUTDIR: ${{ github.workspace }}/results
|
|
||||||
# uses: actions/upload-artifact@v3
|
|
||||||
# with:
|
|
||||||
# name: results
|
|
||||||
# path: ${{ env.INVOKEAI_OUTDIR }}
|
|
||||||
|
Reference in New Issue
Block a user