Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Feb 18, 2024
1 parent 313657e commit 948dcac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cmake-single-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ jobs:
echo "LUA_PATH=$PWD/install_dir/share/sysbench/?.lua" >> $GITHUB_ENV
- name: smoke test
run: |
mysql --version
mysql -uroot --host=127.0.0.1 -e "create database sbtest"
#mysql --version
#mysql -uroot --host=127.0.0.1 -e "create database sbtest"
sysbench --version
sysbench --help
sysbench oltp_read_write --mysql-user=root --mysql-host=127.0.0.1 prepare
sysbench oltp_read_write --mysql-user=root --mysql-host=127.0.0.1 run --threads=2 --histogram
sysbench oltp_read_write --mysql-user=root --mysql-host=127.0.0.1 cleanup
sysbench oltp_read_write --mysql-user=root --mysql-db=mysql --mysql-host=127.0.0.1 prepare
sysbench oltp_read_write --mysql-user=root --mysql-db=mysql --mysql-host=127.0.0.1 run --threads=2 --histogram
sysbench oltp_read_write --mysql-user=root --mysql-db=mysql --mysql-host=127.0.0.1 cleanup
sysbench cpu run --threads=2
sysbench fileio --file-test-mode=seqrewr prepare
sysbench fileio --file-test-mode=seqrewr run
Expand All @@ -184,7 +184,7 @@ jobs:
strategy:
fail-fast: false
matrix:
db: [mariadb, mysql-8.0, postgres]
db: [mariadb, mysql, postgres]
needs: build
runs-on: ${{ inputs.os }}
#if: contains(inputs.os,'windows')
Expand Down
5 changes: 3 additions & 2 deletions cmake/BuildLibmariadb.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ if(WIN32)
endif()

if(MSVC)
list(APPEND _EXTRA_CMAKE_ARGS -DCMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE=ON
list(APPEND _EXTRA_CMAKE_ARGS
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE=ON
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION_RELWITHDEBINFO=ON
-DCMAKE_POLICY_DEFAULT_CMP0069=NEW
)
Expand Down Expand Up @@ -86,7 +87,7 @@ ExternalProject_Add(
-DCLIENT_PLUGIN_CACHING_SHA2_PASSWORD=STATIC
-DCLIENT_PLUGIN_DIALOG=OFF
-DCLIENT_PLUGIN_CLIENT_ED25519=OFF
-DCLIENT_PLUGIN_SHA256_PASSWORD=OFF
-DCLIENT_PLUGIN_SHA256_PASSWORD=STATIC
-DCLIENT_PLUGIN_MYSQL_CLEAR_PASSWORD=OFF
-DCLIENT_PLUGIN_ZSTD=OFF
-DSKIP_TESTS=1
Expand Down

0 comments on commit 948dcac

Please sign in to comment.