From ceb84de905979a04089acaf3bc952662395c1ec9 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Sun, 22 Oct 2023 03:12:48 +0200 Subject: [PATCH] Skip examples for now in macOS CI, remove obsolete --- .github/workflows/ci.yml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8ffcab09..a611ec4c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,14 +69,6 @@ jobs: - name: Execute Tests using Pure V Backend with Pure C Blas run: ~/.vmodules/vsl/bin/test ${{ matrix.flags }} --use-cblas - if: ${{ matrix.os != 'ubuntu-18.04' }} - - - name: Execute Tests using Pure V Backend and Garbage Collection enabled - run: ~/.vmodules/vsl/bin/test ${{ matrix.flags }} --use-gc boehm - - - name: Execute Tests using Pure V Backend with Pure C Blas and Garbage Collection enabled - run: ~/.vmodules/vsl/bin/test ${{ matrix.flags }} --use-cblas --use-gc boehm - if: ${{ matrix.os != 'ubuntu-18.04' }} run-tests-on-macos: runs-on: ${{ matrix.os }} @@ -118,13 +110,7 @@ jobs: run: mv ./vsl ~/.vmodules - name: Execute Tests using Pure V Backend - run: ~/.vmodules/vsl/bin/test + run: ~/.vmodules/vsl/bin/test --skip-examples - name: Execute Tests using Pure V Backend with Pure C Blas - run: ~/.vmodules/vsl/bin/test --use-cblas - - - name: Execute Tests using Pure V Backend and Garbage Collection enabled - run: ~/.vmodules/vsl/bin/test --use-gc boehm - - - name: Execute Tests using Pure V Backend with Pure C Blas and Garbage Collection enabled - run: ~/.vmodules/vsl/bin/test --use-cblas --use-gc boehm + run: ~/.vmodules/vsl/bin/test --use-cblas --skip-examples