Skip to content

Commit d5daf1e

Browse files
authored
[Tests] Fix github CI (skypilot-org#1495)
Fix github workflows
1 parent db5e45d commit d5daf1e

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

.github/workflows/pylint.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ on:
1414

1515
jobs:
1616
pylint:
17-
runs-on: ubuntu-latest
17+
# Need to specify 20.04, because ubuntu-latest does not work with
18+
# python 3.6: https://github.com/actions/setup-python/issues/355#issuecomment-1335042510
19+
runs-on: ubuntu-20.04
1820
strategy:
1921
matrix:
2022
python-version: ["3.6"]

.github/workflows/pytest-generic.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is needed for GitHub Actions for the "Waiting for status to be reported" problem,
22
# according to https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks
3-
name: Run Python Tests
3+
name: Python Tests
44
on:
55
# Trigger the workflow on push or pull request,
66
# but only for the main branch
@@ -13,7 +13,9 @@ on:
1313
- master
1414
- 'releases/**'
1515
jobs:
16-
test:
17-
runs-on: ubuntu-latest
16+
python-test:
17+
# Need to specify 20.04, because ubuntu-latest does not work with
18+
# python 3.6: https://github.com/actions/setup-python/issues/355#issuecomment-1335042510
19+
runs-on: ubuntu-20.04
1820
steps:
1921
- run: 'echo "No tests to run"'

.github/workflows/pytest.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Python Tests
1+
name: Python Tests
22
on:
33
# Trigger the workflow on push or pull request,
44
# but only for the main branch
@@ -11,10 +11,9 @@ on:
1111
- master
1212
- 'releases/**'
1313
jobs:
14-
test:
14+
python-test:
1515
strategy:
1616
matrix:
17-
os: ["ubuntu-latest"]
1817
python-version: [3.6]
1918
test-path:
2019
- tests/test_cli.py
@@ -26,7 +25,9 @@ jobs:
2625
- tests/test_storage.py
2726
- tests/test_wheels.py
2827
- tests/test_spot.py
29-
runs-on: ${{ matrix.os }}
28+
# Need to specify 20.04, because ubuntu-latest does not work with
29+
# python 3.6: https://github.com/actions/setup-python/issues/355#issuecomment-1335042510
30+
runs-on: ubuntu-20.04
3031
steps:
3132
- name: Checkout repository
3233
uses: actions/checkout@v2
@@ -45,7 +46,6 @@ jobs:
4546
restore-keys: |
4647
${{ runner.os }}-pip-pytest-${{ matrix.python-version }}
4748
48-
4949
- name: Install dependencies
5050
run: |
5151
python -m pip install --upgrade pip

.github/workflows/yapf.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ on:
1313
- 'releases/**'
1414
jobs:
1515
yapf:
16-
runs-on: ubuntu-latest
16+
# Need to specify 20.04, because ubuntu-latest does not work with
17+
# python 3.6: https://github.com/actions/setup-python/issues/355#issuecomment-1335042510
18+
runs-on: ubuntu-20.04
1719
strategy:
1820
matrix:
1921
python-version: ["3.6"]

0 commit comments

Comments
 (0)