Skip to content

Commit ea4264f

Browse files
committed
👷 add sqlcipher tag to CI builds #18034
cd.yml: desktop kernel build (line 186) and Android gomobile bind (line 304) now use -tags "fts5 sqlcipher", matching scripts/{win,darwin,linux}-build. Ensures release binaries include SQLCipher codec for encrypted notebooks. #18034
1 parent 545d0e0 commit ea4264f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
184184

185185
- name: Building Kernel
186-
run: go build -tags fts5 -o "${{ matrix.config.kernel_path }}" -ldflags "${{ matrix.config.build_args_prefix }} github.com/${{ github.repository }}/kernel/util.${{ matrix.config.build_args_suffix }}"
186+
run: go build -tags "fts5 sqlcipher" -o "${{ matrix.config.kernel_path }}" -ldflags "${{ matrix.config.build_args_prefix }} github.com/${{ github.repository }}/kernel/util.${{ matrix.config.build_args_suffix }}"
187187
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
188188
env:
189189
GO111MODULE: on
@@ -301,7 +301,7 @@ jobs:
301301
GOPATH: ${{ github.workspace }}/go
302302

303303
- name: Building Android Kernel
304-
run: gomobile bind -tags fts5 -ldflags "-s -w" -v -o kernel.aar -target android/arm64 -androidapi 26 ./mobile/
304+
run: gomobile bind -tags "fts5 sqlcipher" -ldflags "-s -w" -v -o kernel.aar -target android/arm64 -androidapi 26 ./mobile/
305305
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
306306
env:
307307
GOPATH: ${{ github.workspace }}/go

0 commit comments

Comments
 (0)