Skip to content

Commit

Permalink
give up on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Jun 10, 2022
1 parent 99240ca commit 41cf3fc
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -36,19 +36,15 @@ jobs:
version: 'nightly'
steps:
- uses: actions/checkout@v2
- name: "Install Visual C++ for Python 2.7"
if: runner.os == 'Windows'
run: |
choco install vcpython27 -f -y
- name: setup python
if: ${{ matrix.arch == 'x64' }}
if: ${{ matrix.arch == 'x64' && matrix.os != 'windows-latest'}}
uses: actions/setup-python@v4
with:
python-version: "2.x"
architecture: ${{ matrix.arch }}
- name: setup autobahn wstest
if: ${{ matrix.arch == 'x64'}}
run: python -m pip install --upgrade pip wheel autobahntestsuite
if: ${{ matrix.arch == 'x64' && matrix.os != 'windows-latest'}}
run: python -m pip install --upgrade pip autobahntestsuite
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand Down

0 comments on commit 41cf3fc

Please sign in to comment.