CLT latest release installation tests a94b3c3732dd169ce10c7fcccc201e6b523a8ea7 #169
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: CLT latest release installation tests | |
run-name: CLT latest release installation tests ${{ github.sha }} | |
on: | |
schedule: | |
- cron: '00 20 * * *' | |
push: | |
paths: | |
- 'test/clt-tests/**' | |
branches: | |
- manticore-6.2.12 | |
# cancels the previous workflow run when a new one appears in the same branch (e.g. master or a PR's branch) | |
concurrency: | |
group: clt_nightly_${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
commit_info: | |
name: Commit info | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: | | |
echo '# Nightly tests of latest release' >> $GITHUB_STEP_SUMMARY | |
echo '* Attempt: ${{ github.run_attempt }}' >> $GITHUB_STEP_SUMMARY | |
clt_rhel_release_installation: | |
name: Testing RHEL release packages installation | |
strategy: | |
fail-fast: false | |
matrix: | |
image: [ "centos:7", "almalinux:8", "almalinux:9", "oraclelinux:9", "amazonlinux:latest" ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: manticoresoftware/[email protected] | |
with: | |
ref: manticore-6.2.12 | |
image: ${{ matrix.image }} | |
test_prefix: test/clt-tests/installation/rhel-release- | |
clt_deb_release_installation: | |
name: Testing DEB release packages installation | |
strategy: | |
fail-fast: false | |
matrix: | |
image: [ "ubuntu:bionic", "ubuntu:focal", "ubuntu:jammy", "debian:buster", "debian:bullseye", "debian:bookworm" ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: manticoresoftware/[email protected] | |
with: | |
ref: manticore-6.2.12 | |
image: ${{ matrix.image }} | |
test_prefix: test/clt-tests/installation/deb-release- |