Skip to content

Commit ea3860a

Browse files
committed
Explicitly set up Python 2 for the test262 test run.
1 parent 751d149 commit ea3860a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,21 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
os: [ubuntu-latest]
42+
os: [ubuntu-20.04]
4343
dc: [dmd-latest]
4444
arch: [x86_64]
4545

4646
runs-on: ${{ matrix.os }}
47+
container:
48+
image: python:2.7.18-buster
4749
steps:
4850
- uses: actions/checkout@v2
4951

52+
- name: Set up Python 2
53+
uses: actions/setup-python@v5
54+
with:
55+
python-version: 2.7.18
56+
5057
- name: Install D compiler
5158
uses: dlang-community/setup-dlang@v1
5259
with:

0 commit comments

Comments
 (0)