diff options
| author | 2025-02-05 23:39:56 +0100 | |
|---|---|---|
| committer | 2025-02-16 00:02:44 +0100 | |
| commit | 24d45c97139e865cd94bb45e8ea3ea3640637004 (patch) | |
| tree | 355a967061bc3ab0b905b6d16ca0fb84aaf2019f | |
| parent | build: install the sqlite library artifact (diff) | |
| download | zig-sqlite-24d45c97139e865cd94bb45e8ea3ea3640637004.tar.gz zig-sqlite-24d45c97139e865cd94bb45e8ea3ea3640637004.tar.xz zig-sqlite-24d45c97139e865cd94bb45e8ea3ea3640637004.zip | |
the loadable extension is tested with the 'test' target
| -rw-r--r-- | .github/workflows/main.yml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 923e9f1..67659b7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml | |||
| @@ -60,19 +60,3 @@ jobs: | |||
| 60 | - name: Run Tests in memory | 60 | - name: Run Tests in memory |
| 61 | if: ${{ matrix.os != 'ubuntu-24.04' }} | 61 | if: ${{ matrix.os != 'ubuntu-24.04' }} |
| 62 | run: zig build test -Dci=true -Din_memory=true --summary all | 62 | run: zig build test -Dci=true -Din_memory=true --summary all |
| 63 | |||
| 64 | test-loadable-extension: | ||
| 65 | runs-on: ubuntu-24.04 | ||
| 66 | steps: | ||
| 67 | - name: Checkout repository | ||
| 68 | uses: actions/checkout@v4 | ||
| 69 | |||
| 70 | - name: Setup zig | ||
| 71 | uses: goto-bus-stop/setup-zig@v2 | ||
| 72 | with: | ||
| 73 | version: master | ||
| 74 | |||
| 75 | - name: Build the example zigcrypto loadable extension | ||
| 76 | run: zig build zigcrypto | ||
| 77 | - name: Test the zigcrypto loadable extension | ||
| 78 | run: ./zig-out/bin/zigcrypto-test | ||