From 2c7fd0132880f887e612f21515e84515f3f39978 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Wed, 18 Aug 2021 22:37:20 +0200 Subject: ci: enable macOS --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/main.yml') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 587c172..ce03bf2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -46,7 +46,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 -- cgit v1.2.3 From 6e6e567cbe0944fdb6497e9771a58fe884740b9b Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Wed, 18 Aug 2021 22:52:02 +0200 Subject: ci: stop testing both memory and filesystem We don't do much when choosing in memory or not, sqlite does all the work of managing the data, so there's not much point for us testing both modes. This will also have the benefit of reducing the time needed to run the CI, especially for aarch64 which is super slow. --- .github/workflows/main.yml | 17 ----------------- 1 file changed, 17 deletions(-) (limited to '.github/workflows/main.yml') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce03bf2..e1593b4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,20 +41,3 @@ jobs: - name: Run Tests in memory run: zig build test -Din_memory=true - - test-with-filesystem: - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - uses: goto-bus-stop/setup-zig@v1 - with: - version: master - - - name: Run Tests with filesystem - run: zig build test -Din_memory=false -- cgit v1.2.3