Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Fix current working engine commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Blckbrry-Pi committed Apr 2, 2024
1 parent b5c0823 commit feababe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
- push

env:
CURRENT_WORKING_ENGINE_COMMIT: aa839aee9011ece7d6a133dee984727748bd3cbf
CURRENT_WORKING_ENGINE_COMMIT: 3aab9bc2abcb8105fc3af837900ce4f7a932ad17

jobs:
build:
Expand Down Expand Up @@ -34,6 +34,12 @@ jobs:
with:
deno-version: "1.41.1"

# HACK: Chown /prisma in docker container
- name: Hacky fix
run:
cat 'opengb/src/migrate/prisma.ts' | sed -r 's#\t\t\tdbDirContainer,#\t\t\t"/prisma", "/home/node",#' > 'opengb/src/migrate/prisma.ts._temp' &&
mv 'opengb/src/migrate/prisma.ts._temp' 'opengb/src/migrate/prisma.ts'

# Install OpenGB
- name: Install OpenGB
run: cd opengb/ && deno task cli:install
Expand Down

0 comments on commit feababe

Please sign in to comment.