mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-13 22:03:04 +00:00
Fix a syntax error
Per GitHub, this is not fine: - name: [Windows] Do stuff run: ... This is fine: - name: Do stuff [Windows] run: ...
This commit is contained in:
parent
4924cd9c04
commit
d996cc8d11
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
# Get vcpython27 on Windows + Python 2.7, to build zfec
|
||||
# extension. See https://chocolatey.org/packages/vcpython27 and
|
||||
# https://github.com/crazy-max/ghaction-chocolatey
|
||||
- name: [Windows] Install MSVC 9.0 for Python 2.7
|
||||
- name: Install MSVC 9.0 for Python 2.7 [Windows]
|
||||
if: matrix.os == 'windows-latest' && matrix.python-version == '2.7'
|
||||
uses: crazy-max/ghaction-chocolatey@v1
|
||||
with:
|
||||
@ -92,15 +92,15 @@ jobs:
|
||||
|
||||
steps:
|
||||
|
||||
- name: [Ubuntu] Install Tor
|
||||
- name: Install Tor [Ubuntu]
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: sudo apt install tor
|
||||
|
||||
- name: [macOS] Install Tor
|
||||
- name: Install Tor [macOS]
|
||||
if: matrix.os == 'macos-latest'
|
||||
run: brew install tor
|
||||
|
||||
- name: [Windows] Install Tor
|
||||
- name: Install Tor [Windows]
|
||||
if: matrix.os == 'windows-latest'
|
||||
uses: crazy-max/ghaction-chocolatey@v1
|
||||
with:
|
||||
@ -158,7 +158,7 @@ jobs:
|
||||
# Get vcpython27 on Windows + Python 2.7, to build zfec
|
||||
# extension. See https://chocolatey.org/packages/vcpython27 and
|
||||
# https://github.com/crazy-max/ghaction-chocolatey
|
||||
- name: [Windows] Install MSVC 9.0 for Python 2.7
|
||||
- name: Install MSVC 9.0 for Python 2.7 [Windows]
|
||||
if: matrix.os == 'windows-latest' && matrix.python-version == '2.7'
|
||||
uses: crazy-max/ghaction-chocolatey@v1
|
||||
with:
|
||||
|
Loading…
x
Reference in New Issue
Block a user