Skip to content

CI health updates #333

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 20, 2022
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
8 changes: 4 additions & 4 deletions .github/workflows/check_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
if: |
github.event_name == 'push' ||
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master

- name: Setup Tarantool
uses: tarantool/setup-tarantool@v1
- name: Setup Tarantool CE
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: '2.6'
tarantool-version: '2.10'

- name: Setup luacheck
run: tarantoolctl rocks install luacheck 0.25.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_rockspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
push-scm-rockspec:
runs-on: [ ubuntu-latest ]
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@master
Expand All @@ -23,7 +23,7 @@ jobs:
files: ${{ env.ROCK_NAME }}-scm-1.rockspec

push-tagged-rockspec:
runs-on: [ ubuntu-latest ]
runs-on: ubuntu-20.04
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@master
Expand Down
30 changes: 18 additions & 12 deletions .github/workflows/test_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,18 @@ jobs:
metrics-version: "0.1.8"
- tarantool-version: "2.8"
metrics-version: "0.10.0"
- tarantool-version: "2.8"
- tarantool-version: "2.10"
coveralls: true
metrics-version: "0.12.0"
fail-fast: false
runs-on: [ubuntu-latest]
# Can't install older versions on 22.04,
# see https://github.com/tarantool/setup-tarantool/issues/36
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master

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

Expand Down Expand Up @@ -77,15 +79,15 @@ jobs:
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
tarantool-version: ["1.10", "2.8"]
tarantool-version: ["1.10", "2.10"]
metrics-version: ["0.12.0"]
fail-fast: false
runs-on: [ubuntu-latest]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master

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

Expand All @@ -110,18 +112,22 @@ jobs:
if: github.event_name == 'push'
strategy:
matrix:
bundle_version: [ "1.10.11-0-gf0b0e7ecf-r422", "2.7.3-0-gdddf926c3-r422" ]
tarantool-version:
- folder: "1.10"
bundle: "tarantool-enterprise-sdk-1.10.13-48-r523"
- folder: "2.10"
bundle: "tarantool-enterprise-sdk-nogc64-2.10.4-0-r523.linux.x86_64"
metrics-version: ["", "0.12.0"]
fail-fast: false
runs-on: [ ubuntu-latest ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master

- name: Install requirements for enterprise
run: |
curl -O -L https://tarantool:${{ secrets.DOWNLOAD_TOKEN }}@download.tarantool.io/enterprise/tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz
tar -xzf tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz
rm -f tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz
curl -O -L https://tarantool:${{ secrets.DOWNLOAD_TOKEN }}@download.tarantool.io/enterprise/release/linux/x86_64/${{ matrix.tarantool-version.folder }}/${{ matrix.tarantool-version.bundle }}.tar.gz
tar -xzf ${{ matrix.tarantool-version.bundle }}.tar.gz
rm -f ${{ matrix.tarantool-version.bundle }}.tar.gz
sudo cp tarantool-enterprise/tarantool /usr/bin/tarantool
source tarantool-enterprise/env.sh
tarantool --version
Expand Down