renamed seeding related workflows

[skip ci]
This commit is contained in:
silverqx
2022-05-18 10:24:02 +02:00
parent 4960baa066
commit cd1f4a4fac
3 changed files with 6 additions and 6 deletions

View File

@@ -181,7 +181,7 @@ jobs:
cmake --build ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug
--target all --parallel 2
- name: Create tables for unit tests 🎉 (MySQL only)
- name: Create and Seed tables for unit tests 🎉 (MySQL)
working-directory: ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug/tests/testdata_tom
run: |
export LD_LIBRARY_PATH=../..${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
@@ -195,7 +195,7 @@ jobs:
DB_MYSQL_USERNAME: ${{ secrets.DB_MYSQL_USERNAME }}
TOM_TESTDATA_ENV: testing
- name: Create and Seed tables for unit tests (MySQL (seed only), PostgreSQL, SQLite)
- name: Create and Seed tables for unit tests (PostgreSQL, SQLite)
working-directory: tests/testdata
run: |
php ./create_and_seed_database.php --skip-mysql-migrate

View File

@@ -195,7 +195,7 @@ jobs:
cmake --build ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug
--target all --parallel ${{ matrix.compiler.key == 'gcc' && 1 || 2 }}
- name: Create tables for unit tests 🎉 (MySQL only)
- name: Create and Seed tables for unit tests 🎉 (MySQL)
shell: msys2 {0}
working-directory: ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug/tests/testdata_tom
run: |
@@ -210,7 +210,7 @@ jobs:
DB_MYSQL_USERNAME: ${{ secrets.DB_MYSQL_USERNAME }}
TOM_TESTDATA_ENV: testing
- name: Create and Seed tables for unit tests (MySQL (seed only), PostgreSQL, SQLite)
- name: Create and Seed tables for unit tests (PostgreSQL, SQLite)
working-directory: tests/testdata
run: |
php.exe ./create_and_seed_database.php --skip-mysql-migrate

View File

@@ -192,7 +192,7 @@ jobs:
run: >-
cmake --build ../TinyORM-builds-cmake/build-msvc-cmake-debug --target all --parallel 2
- name: Create tables for unit tests 🎉 (MySQL only)
- name: Create and Seed tables for unit tests 🎉 (MySQL)
working-directory: ../TinyORM-builds-cmake/build-msvc-cmake-debug/tests/testdata_tom
run: |
$env:Path = '..\..;' + $env:Path
@@ -206,7 +206,7 @@ jobs:
DB_MYSQL_USERNAME: ${{ secrets.DB_MYSQL_USERNAME }}
TOM_TESTDATA_ENV: testing
- name: Create and Seed tables for unit tests (MySQL (seed only), PostgreSQL, SQLite)
- name: Create and Seed tables for unit tests (PostgreSQL, SQLite)
working-directory: tests/testdata
run: |
php.exe ./create_and_seed_database.php --skip-mysql-migrate