Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 0 additions & 143 deletions .github/workflows/unit_race.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT MODIFY: THIS FILE IS GENERATED USING "make generate_ci_workflows"

name: Unit Test (mysql57)
name: Unit Tests
on:
push:
branches:
Expand All @@ -10,7 +10,7 @@ on:
pull_request:
branches: '**'
concurrency:
group: format('{0}-{1}', ${{ github.ref }}, 'Unit Test (mysql57)')
group: format('{0}-{1}', ${{ github.ref }}, 'Unit Tests')
cancel-in-progress: true

permissions: read-all
Expand All @@ -22,7 +22,17 @@ env:

jobs:
test:
name: Unit Test (mysql57)
strategy:
fail-fast: false
matrix:
flavor: [mysql57, mysql80, mysql84]
race: [false]

include:
- flavor: mysql80
race: true

name: Unit Test (${{ (matrix.race && 'Race') || matrix.flavor }})
runs-on: ubuntu-24.04

steps:
Expand Down Expand Up @@ -125,9 +135,9 @@ jobs:
export VTEVALENGINETEST="0"
# We sometimes need to alter the behavior based on the platform we're
# testing, e.g. MySQL 5.7 vs 8.0.
export CI_DB_PLATFORM="mysql57"
export CI_DB_PLATFORM="${{ matrix.flavor }}"

make unit_test | tee -a output.txt | go-junit-report -set-exit-code > report.xml
make unit_test${{ (matrix.race && '_race') || '' }} | tee -a output.txt | go-junit-report -set-exit-code > report.xml

- name: Record test results in launchable if PR is not a draft
if: github.event_name == 'pull_request' && github.event.pull_request.draft == 'false' && steps.changes.outputs.unit_tests == 'true' && github.base_ref == 'main' && !cancelled()
Expand Down
149 changes: 0 additions & 149 deletions .github/workflows/unit_test_mysql80.yml

This file was deleted.

Loading
Loading