CLT testing of supported versions of mysqldump f63b4bc8dbb0a6a8f35d031d14e9409324bca447 #389
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/migration-es-ms/**' # trigger when changes are made in migration test files | |
- 'test/clt-tests/mysqldump/versions/**' # trigger when changes are made in mysqldump test files | |
- '.github/workflows/nightly_dumps.yml' # trigger when changes are made in the workflow config | |
# 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.2.3 | |
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.2.3 | |
with: | |
image: manticoresearch/dind:v1 | |
test_prefix: test/clt-tests/migration-es-ms/ | |
run_args: --privileged |