From 02cac1d48783725d5994d37ed03e9f3dc32ec504 Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Fri, 28 Jun 2024 13:09:39 -0700 Subject: [PATCH] Revert "Add macOs integration test for default workflow. (#3898)" (#3904) This reverts commit 97b409cd486b1a3b1114ae204802c81f3727d1a2. --- .../conda-environments/mac-environment.yml | 26 ---------- .github/workflows/mac-integration-test.yml | 50 ------------------- 2 files changed, 76 deletions(-) delete mode 100644 .github/conda-environments/mac-environment.yml delete mode 100644 .github/workflows/mac-integration-test.yml diff --git a/.github/conda-environments/mac-environment.yml b/.github/conda-environments/mac-environment.yml deleted file mode 100644 index 33832b85..00000000 --- a/.github/conda-environments/mac-environment.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: comfyui -channels: - - pytorch-nightly - - defaults -dependencies: - - python>=3.9 - - pytorch-nightly::pytorch - - torchvision - - torchaudio - - pip: - - pip - # comfyui requirements - - einops - - transformers>=4.25.1 - - safetensors>=0.4.2 - - aiohttp - - pyyaml - - Pillow - - scipy - - tqdm - - psutil - # comfy-action requirements - - requests - - google-cloud-storage - - comfy-cli - - charset-normalizer diff --git a/.github/workflows/mac-integration-test.yml b/.github/workflows/mac-integration-test.yml deleted file mode 100644 index 6a0482b1..00000000 --- a/.github/workflows/mac-integration-test.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: (macOS) ComfyUI Integration Tests -on: - push: - branches: - - master - paths-ignore: - - 'app/**' - - 'input/**' - - 'output/**' - - 'model/**' - - 'notebook/**' - - 'script_example/**' - - 'tests/**' - - 'tests-ui/**' - - '.github/**' - - '.ci/**' - - 'web/**' - workflow_dispatch: - pull_request: - branches: - - master - paths-ignore: - - 'app/**' - - 'input/**' - - 'output/**' - - 'model/**' - - 'notebook/**' - - 'script_example/**' - - 'tests/**' - - 'tests-ui/**' - - '.github/**' - - '.ci/**' - - 'web/**' - -jobs: - test-workflows: - runs-on: [self-hosted, m2] - steps: - - name: Test ComfyUI Workflows - uses: comfy-org/comfy-action@main - with: - os: mac - models-json: '{"v1-5-pruned-emaonly.ckpt": {"url": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt", "directory": "checkpoints"}}' - workflow_filenames: "default.json" - gcs_bucket_name: 'comfy-ci-results' - google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }} - output_prefix: 'ComfyUI' - conda_env_file: '.github/conda-environments/mac-environment.yml' - timeout: 50 -