From 63e11dd7168c7b112285a180251b1ec89322d658 Mon Sep 17 00:00:00 2001 From: toofar Date: Sun, 16 Jul 2023 12:42:58 +1200 Subject: remove branch references from nightly-test workflow I want to try running these builds from a branch other than master. Workflows with workflow_dispatch let you specify a branch to run on, scheduled runs run on the default branch anyway, so hardcoding the branch doesn't seem helpful. This can be ported to the proper nightly.yml too if it works. --- .github/workflows/nightly-test.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/nightly-test.yml b/.github/workflows/nightly-test.yml index 9e59d3524..6cbd270be 100644 --- a/.github/workflows/nightly-test.yml +++ b/.github/workflows/nightly-test.yml @@ -11,33 +11,27 @@ jobs: matrix: include: - os: macos-11 - branch: master toxenv: build-release name: macos - os: windows-2019 args: --64bit - branch: master toxenv: build-release name: windows-64bit - os: windows-2019 args: --32bit - branch: master toxenv: build-release name: windows-32bit - os: macos-11 args: --debug - branch: master toxenv: build-release name: macos-debug - os: windows-2019 args: --64bit --debug - branch: master toxenv: build-release name: windows-64bit-debug - os: windows-2019 args: --32bit --debug - branch: master toxenv: build-release name: windows-32bit-debug @@ -61,7 +55,6 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: "${{ matrix.branch }}" persist-credentials: false - name: Set up Python uses: actions/setup-python@v4 -- cgit v1.2.3-54-g00ecf