Skip to content

Commit c74884c

Browse files
committed
Strip unnecessary build steps from workflow.
Given this is now a noarch package, don't need to build under every iteration of python. Hopefully this will repair the failing builds.
1 parent 3007215 commit c74884c

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/release.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,25 @@ jobs:
4242
strategy:
4343
matrix:
4444
include:
45-
- { os: ubuntu-latest, python: 3.9, arch: x64 }
4645
- { os: ubuntu-latest, python: 3.8, arch: x64 }
47-
- { os: ubuntu-latest, python: 3.7, arch: x64 }
48-
- { os: ubuntu-latest, python: 3.6, arch: x64 }
49-
50-
- { os: macos-latest, python: 3.9, arch: x64 }
51-
- { os: macos-latest, python: 3.8, arch: x64 }
52-
- { os: macos-latest, python: 3.7, arch: x64 }
53-
- { os: macos-latest, python: 3.6, arch: x64 }
54-
55-
- { os: windows-latest, python: 3.9, arch: x64 }
56-
- { os: windows-latest, python: 3.8, arch: x64 }
57-
- { os: windows-latest, python: 3.7, arch: x64 }
58-
- { os: windows-latest, python: 3.6, arch: x64 }
59-
60-
- { os: windows-latest, python: 3.9, arch: x86 }
61-
- { os: windows-latest, python: 3.8, arch: x86 }
62-
- { os: windows-latest, python: 3.7, arch: x86 }
63-
- { os: windows-latest, python: 3.6, arch: x86 }
46+
#- { os: ubuntu-latest, python: 3.9, arch: x64 }
47+
#- { os: ubuntu-latest, python: 3.7, arch: x64 }
48+
#- { os: ubuntu-latest, python: 3.6, arch: x64 }
49+
50+
#- { os: macos-latest, python: 3.9, arch: x64 }
51+
#- { os: macos-latest, python: 3.8, arch: x64 }
52+
#- { os: macos-latest, python: 3.7, arch: x64 }
53+
#- { os: macos-latest, python: 3.6, arch: x64 }
54+
55+
#- { os: windows-latest, python: 3.9, arch: x64 }
56+
#- { os: windows-latest, python: 3.8, arch: x64 }
57+
#- { os: windows-latest, python: 3.7, arch: x64 }
58+
#- { os: windows-latest, python: 3.6, arch: x64 }
59+
60+
#- { os: windows-latest, python: 3.9, arch: x86 }
61+
#- { os: windows-latest, python: 3.8, arch: x86 }
62+
#- { os: windows-latest, python: 3.7, arch: x86 }
63+
#- { os: windows-latest, python: 3.6, arch: x86 }
6464

6565
if: github.repository == 'labscript-suite/runviewer' && (github.event_name != 'create' || github.event.ref_type != 'branch')
6666
steps:

0 commit comments

Comments
 (0)