CLT testing of supported versions of mysqldump 99e943d455e4c1619b6b9a643743cfb3e3bbe806 #258
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 testing of supported versions of mysqldump | |
run-name: CLT testing of supported versions of mysqldump ${{ github.sha }} | |
on: | |
schedule: | |
- cron: '00 20 * * *' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'test/clt-tests/mysqldump/versions/**' | |
# cancels the previous workflow run when a new one appears in the same branch (e.g. master or a PR's branch) | |
concurrency: | |
group: nightly_dumps_${{ 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_test_supported_mysqldump_versions: | |
name: Testing supported mysqldump versions | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: manticoresoftware/clt@0.1.21 | |
with: | |
image: manticoresearch/dind:v1 | |
test_prefix: test/clt-tests/mysqldump/versions/ | |
run_args: --privileged | |
clt_test_migration_es_ms: | |
name: Testing data migration from elastic to manticore | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: manticoresoftware/clt@0.1.21 | |
with: | |
image: manticoresearch/dind:v1 | |
test_prefix: test/clt-tests/migration-es-ms/ | |
run_args: --privileged |