summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoofar <toofar@spalge.com>2023-07-16 12:42:58 +1200
committertoofar <toofar@spalge.com>2023-10-28 08:47:34 +1300
commit63e11dd7168c7b112285a180251b1ec89322d658 (patch)
treeae9b847157a4687341d567ffad3ef652329ca3d3
parent031347c48158046987dfa477d62b0774894e4649 (diff)
downloadqutebrowser-63e11dd7168c7b112285a180251b1ec89322d658.tar.gz
qutebrowser-63e11dd7168c7b112285a180251b1ec89322d658.zip
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.
-rw-r--r--.github/workflows/nightly-test.yml7
1 files changed, 0 insertions, 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