Skip to content

Commit cc7c822

Browse files
committed
Don't test extensions on macOS system SQLite
1 parent 9cea1d2 commit cc7c822

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ jobs:
109109
working-directory: sqlite3_test/
110110

111111
- name: Test extension example
112+
# We can't load extension with the system SQLite on Apple platforms,
113+
# the feature is disabled.
114+
if: ${{ !(runner.os == 'macos' && matrix.sqlite == 'system') }}
112115
run: dart test
113116
working-directory: sqlite3/example/custom_extension
114117

0 commit comments

Comments
 (0)