summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 19952df17..14d9b1a7c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -255,7 +255,7 @@ jobs:
runs-on: macos-latest
env:
- CC: ${{ matrix.compiler }}
+ CC: clang
TEST: test
SRCDIR: ./src
LEAK_CFLAGS: -DEXITFREE
@@ -264,8 +264,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- features: [tiny, huge]
- compiler: [clang, gcc]
+ features: [tiny, normal, huge]
steps:
- uses: actions/checkout@v2
@@ -286,6 +285,8 @@ jobs:
echo "TEST=testtiny"
echo "CONFOPT=--disable-gui"
;;
+ normal)
+ ;;
huge)
echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
;;