diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4289c9a72..50609488c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index b74766c0c..a979d9198 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -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 diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index 6de836e48..e10db9290 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -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