Skip to content

Commit dae87ab

Browse files
turn off X on Alpine
1 parent 064c198 commit dae87ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/os-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,5 @@ jobs:
129129
working-directory: mysqlmsn
130130
env:
131131
VERSION_REQUIREMENT: ${{ matrix.version-requirement }}
132-
X_ON_WITHOUT_FORCE: true
132+
X_OFF: true
133133
run: npm run os-compat:ci

tests/versions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ for (const version of DOWNLOADABLE_MYSQL_VERSIONS.filter(v => satisfies(v, proce
2929
logLevel: 'LOG',
3030
initSQLString: 'CREATE DATABASE mytestdb;',
3131
arch,
32-
xEnabled: process.env.X_ON_WITHOUT_FORCE === 'true' ? 'ON' : 'FORCE'
32+
xEnabled: process.env.X_OFF === 'true' ? 'OFF' : 'FORCE'
3333
}
3434

3535
const db = await createDB(options)

0 commit comments

Comments
 (0)