Skip to content

Commit

Permalink
added FIX_SQL_FMT env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Oct 3, 2024
1 parent a995178 commit cadb8f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- host: macos-latest
target: x86_64-apple-darwin
build: |
yarn build --target x86_64-apple-darwin
FIX_SQL_FMT=1 yarn build --target x86_64-apple-darwin
strip -x *.node
- host: windows-latest
build: yarn build
Expand All @@ -38,12 +38,12 @@ jobs:
target: x86_64-unknown-linux-gnu
build: |-
set -e &&
yarn build --target x86_64-unknown-linux-gnu &&
FIX_SQL_FMT=1 yarn build --target x86_64-unknown-linux-gnu &&
strip *.node
- host: macos-latest
target: aarch64-apple-darwin
build: |
yarn build --target aarch64-apple-darwin
FIX_SQL_FMT=1 yarn build --target aarch64-apple-darwin
strip -x *.node
name: stable - ${{ matrix.settings.target }} - node@18
runs-on: ${{ matrix.settings.host }}
Expand Down

0 comments on commit cadb8f8

Please sign in to comment.