Skip to content

Commit 4d25a5d

Browse files
committed
fix(ci): build if not skipping
1 parent 016539b commit 4d25a5d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/SQLTests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,18 @@ jobs:
4646
submodules: recursive
4747
ref: ${{ inputs.pr_ref || github.event.pull_request.head.sha || github.sha }}
4848

49+
- name: Setup vcpkg
50+
if: steps.check-creds.outputs.skip == 'false'
51+
uses: lukka/run-vcpkg@v11
52+
with:
53+
vcpkgGitCommitId: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6
54+
4955
- name: Install dependencies
5056
if: steps.check-creds.outputs.skip == 'false'
5157
run: sudo apt-get update && sudo apt-get install -y ninja-build libssl-dev
5258

5359
- name: Run SQL tests
5460
if: steps.check-creds.outputs.skip == 'false'
5561
run: ./scripts/test_sql.sh /tmp/gsheets_key_file.json
62+
env:
63+
GEN: ninja

0 commit comments

Comments
 (0)