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
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
version-check:
# We need this job to run only on push with tag.
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Check module version for api
uses: tarantool/actions/check-module-version@master
Expand All @@ -22,7 +22,7 @@ jobs:

publish-rockspec-scm-1:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3

Expand All @@ -40,7 +40,7 @@ jobs:

publish-rockspec-tag:
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3

Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,26 @@ jobs:
fail-fast: false
matrix:
tarantool:
- '2.8'
- '2.10'
cartridge: [true]
- '3.2'
- '3.4'
- 'master'
cartridge: [false]
coveralls: [false]
metrics: [false]
include:
- tarantool: '2.11'
cartridge: true
coveralls: true
metrics: true
- tarantool: 'master'
cartridge: false
coveralls: false
metrics: false

runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Clone the module
uses: actions/checkout@v3

- name: Setup tt
run: |
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
curl -L https://tarantool.io/release/3/installer.sh | sudo bash
sudo apt install -y tt

- name: Install tarantool ${{ matrix.tarantool }}
Expand Down
Loading