Skip to content

Commit 929bc26

Browse files
ci: run on ubuntu-20.04
ubuntu-latest is now ubuntu-22.04 instead of 20.04 [1]. For reasons yet unknown, setup-tarantool action not works on ubuntu-22.04 runners [2]. After the issue will be fixed, we may return back to ubuntu-latest. 1. https://github.blog/changelog/2022-11-09-github-actions-ubuntu-latest-workflows-will-use-ubuntu-22-04/ 2. tarantool/setup-tarantool#36
1 parent 3733a81 commit 929bc26

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/check_on_push.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: |
1010
github.event_name == 'push' ||
1111
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-20.04 # See https://github.com/tarantool/setup-tarantool/issues/36
1313
steps:
1414
- uses: actions/checkout@master
1515

.github/workflows/push_rockspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
push-scm-rockspec:
15-
runs-on: [ ubuntu-latest ]
15+
runs-on: ubuntu-20.04 # See https://github.com/tarantool/setup-tarantool/issues/36
1616
if: github.ref == 'refs/heads/master'
1717
steps:
1818
- uses: actions/checkout@master
@@ -23,7 +23,7 @@ jobs:
2323
files: ${{ env.ROCK_NAME }}-scm-1.rockspec
2424

2525
push-tagged-rockspec:
26-
runs-on: [ ubuntu-latest ]
26+
runs-on: ubuntu-20.04 # See https://github.com/tarantool/setup-tarantool/issues/36
2727
if: startsWith(github.ref, 'refs/tags')
2828
steps:
2929
- uses: actions/checkout@master

.github/workflows/test_on_push.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
coveralls: true
3030
metrics-version: "0.12.0"
3131
fail-fast: false
32-
runs-on: [ubuntu-latest]
32+
runs-on: ubuntu-20.04 # See https://github.com/tarantool/setup-tarantool/issues/36
3333
steps:
3434
- uses: actions/checkout@master
3535

@@ -87,7 +87,7 @@ jobs:
8787
tarantool-version: ["1.10", "2.8"]
8888
metrics-version: ["0.12.0"]
8989
fail-fast: false
90-
runs-on: [ubuntu-latest]
90+
runs-on: ubuntu-20.04 # See https://github.com/tarantool/setup-tarantool/issues/36
9191
steps:
9292
- uses: actions/checkout@master
9393

@@ -127,7 +127,7 @@ jobs:
127127
bundle_version: [ "1.10.11-0-gf0b0e7ecf-r422", "2.7.3-0-gdddf926c3-r422" ]
128128
metrics-version: ["", "0.12.0"]
129129
fail-fast: false
130-
runs-on: [ ubuntu-latest ]
130+
runs-on: ubuntu-20.04 # See https://github.com/tarantool/setup-tarantool/issues/36
131131
steps:
132132
- uses: actions/checkout@master
133133

0 commit comments

Comments
 (0)