From b3568f1759198f6d7fe74335e1f1d79957b46f14 Mon Sep 17 00:00:00 2001 From: Benjamin Lupton Date: Tue, 5 Sep 2023 00:04:30 +0800 Subject: [PATCH] ci: another attempt at solving infinite queue --- .github/workflows/dorothy-workflow.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dorothy-workflow.yml b/.github/workflows/dorothy-workflow.yml index 94adaa152..da9c950a2 100755 --- a/.github/workflows/dorothy-workflow.yml +++ b/.github/workflows/dorothy-workflow.yml @@ -87,14 +87,16 @@ jobs: fresh-macos-test: runs-on: macos-latest steps: - # these are the same step, as for some reason if they are separate github action times out - - name: 'Homebrew Uninstall & Dorothy Test' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # prevent rate limiting + - name: 'Uninstall Homebrew' shell: bash run: | - # uninstall homebrew + # run homebrew uninstaller bash -c "$(curl -fsSL 'https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh')" + - name: 'Dorothy Test' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # prevent rate limiting + # shell: bash <-- commented out in case this is what solves the infinite queue issue, (merging the steps does not solve it) + run: | # ensure dorothy is cloned, and run command bash -c "$(curl -fsSL 'https://dorothy.bevry.me/run?branch=${{ github.ref_name }}&commit=${{ github.sha }}')" -- dorothy test distro-test: