Skip to content

Commit

Permalink
blah
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Feb 18, 2024
1 parent 48ba39c commit ba7afae
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/cmake-single-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
#if: contains(inputs.os,'windows')
name: test-${{matrix.db}}
env:
COMMON_SYSBENCH_PARAMS: ${{ matrix.db == 'postgres' && '--db-driver=pgsql --pgsql-password=sbtest' || '--mysql-user=root --mysql-socket=/tmp/mysql.sock'}} --time=30 --table-size=1000000 --report-interval=1 --thread-init-timeout=300 --histogram
COMMON_SYSBENCH_PARAMS: ${{ matrix.db == 'postgres' && '--db-driver=pgsql --pgsql-password=sbtest' || '--mysql-user=root'}} --mysql-socket=${{ runner.os == 'Windows' && 'mysql.sock' || '/tmp/mysql.sock' }} --time=30 --table-size=1000000 --report-interval=1 --thread-init-timeout=300 --histogram

steps:
- name: Download build
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
skip-log-bin
loose-enable-named-pipe
loose-named-pipe-full-access-group=*everyone*
socket=/tmp/mysql.sock
socket=${{ runner.os == 'Windows' && 'mysql.sock' || '/tmp/mysql.sock' }}
max_connections=1000
innodb_max_dirty_pages_pct_lwm=10
Expand All @@ -264,7 +264,6 @@ jobs:
- name: oltp_read_write prepare
run: sysbench oltp_read_write ${{ env.COMMON_SYSBENCH_PARAMS }} prepare
- name: oltp_point_select run
if: matrix.db != 'mysql' || runner.os != 'Windows'
run: sysbench oltp_point_select ${{ env.COMMON_SYSBENCH_PARAMS }} --threads=20 run
- name: oltp_read_write
if: matrix.db != 'mysql' || runner.os != 'Windows'
Expand Down

0 comments on commit ba7afae

Please sign in to comment.