Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/fast_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ on:

jobs:
run_tests:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

strategy:
fail-fast: false
matrix:
tarantool:
- '1.10'
- '2.8'
- '2.10'
- '2.11'

env:
MYSQL_HOST: 127.0.0.1
Expand All @@ -29,12 +27,12 @@ jobs:

steps:
- name: Clone the module
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup tarantool ${{ matrix.tarantool }}
uses: tarantool/setup-tarantool@v1
uses: tarantool/setup-tarantool@v3
with:
tarantool-version: ${{ matrix.tarantool }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ env:

jobs:
publish-rockspec-scm-1:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: ${{ env.ROCK_NAME }}-scm-1.rockspec

publish-rockspec-tag:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
- name: Set env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
run_tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

env:
MYSQL_HOST: 127.0.0.1
Expand Down