web-install: remove EOL OS + align release versions #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
jobs: | |
test_supported_versions: | |
name: Test on ${{matrix.container }} with ${{ matrix.version }} | |
runs-on: ubuntu-latest | |
container: ${{ matrix.container }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 5.4.0 | |
- 6.0.0 | |
- 2023.1.0 | |
- 2024.1.0 | |
include: | |
- version: 2023.1.0 | |
product: --scylla-product scylla-enterprise | |
- version: 2024.1.0 | |
product: --scylla-product scylla-enterprise | |
container: | |
- ubuntu:20.04 | |
- ubuntu:22.04 | |
- debian:11 | |
- rockylinux:8 | |
- rockylinux:9 | |
- oraclelinux:8 | |
- amazonlinux:2023 | |
steps: | |
- if: contains(matrix.container, 'ubuntu') || contains(matrix.container, 'debian') | |
name: Install packages Ubuntu / Debian | |
run: | | |
apt-get update | |
- if: contains(matrix.container, 'centos') || contains(matrix.container, 'oracle') || contains(matrix.container, 'rockylinux') | |
name: Install packages For Centos / Amazonlinux / Rockylinux / Oracle | |
run: | | |
yum update -y && yum install -y tar gzip | |
- uses: actions/checkout@v2 | |
- name: Install Scylla first release | |
run: ./server --scylla-version ${{ matrix.version }} ${{ matrix.product }} | |
- if: contains(matrix.container, 'amazon') && matrix.version == '6.0.0' | |
name: Install packages and Install Scylla for Amazon Linux with version 6.0.0 | |
run: | | |
yum update -y && yum install -y tar gzip | |
./server --scylla-version ${{ matrix.version }} ${{ matrix.product }} | |
test_latest_in_version: | |
name: Test installation for latest in specific version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo ./server --scylla-version 6.0 | |
test_nightly_master: | |
name: Test installation for nightly-master version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo ./server --scylla-version nightly-master | |
test_latest: | |
name: Test installation for latest version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo ./server |