web-install: remove EOL OS + align release versions #108
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 | |
- 2022.1.0 | |
- 2022.2.0 | |
- 2023.1.0 | |
- 2024.1.0 | |
include: | |
- version: 2022.1.0 | |
product: --scylla-product scylla-enterprise | |
- version: 2022.2.0 | |
product: --scylla-product scylla-enterprise | |
- 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 | |
- 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, 'amazon') || contains(matrix.container, 'oracle') || contains(matrix.container, 'rockylinux') | |
name: Install packages For Centos / Amazonlinux / Rockylinux / Oracle | |
run: | | |
if [[ "${{ matrix.container }}" == "amazon" ]]; then | |
yum update -y && yum install -y tar gzip | |
else | |
yum update -y && yum install -y curl tar gzip | |
fi | |
- uses: actions/checkout@v2 | |
- name: Install Scylla first release | |
run: ./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 |