Skip to content

Commit

Permalink
Use the current edgedb-setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
diksipav committed Jan 20, 2025
1 parent 291284d commit a9189a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
yarn format
- name: Install Gel
uses: edgedb/setup-edgedb@7df433b68e74d550eb024e1d1588e3da84bfaf5a
uses: edgedb/setup-edgedb@6763b6de72782d9c2e5ecc1095986a1c707da68f
with:
instance-name: test
server-version: ${{ matrix.gel-version }}
Expand Down
6 changes: 3 additions & 3 deletions packages/driver/test/testUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,20 +294,20 @@ export async function applyMigrations(
if (process.platform === "win32") {
await runCommand("wsl", [
"-u",
"gel",
"edgedb",
"env",
...Object.entries(configToEnv(config)).map(
([key, val]) => `${key}=${val}`,
),
"gel",
"edgedb",
"migrate",
...(params?.flags || []),
"--schema-dir",
getWSLPath(path.join(process.cwd(), "dbschema")),
]);
} else {
await runCommand(
"gel",
"edgedb",
["migrate", ...(params?.flags || [])],
configToEnv(config),
);
Expand Down

0 comments on commit a9189a4

Please sign in to comment.