summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index eae92e2..4dbd0de 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -22,6 +22,13 @@ jobs:
fail-fast: false
matrix:
include:
+ - MEVAL: "CC=clang && CXX=clang"
+ - HOST: "i386-pc-linux-gnu"
+ MEVAL: 'CC="$CC -m32" && CXX="$CXX -m32"'
+ - CONFIGURE_OPTIONS: "--disable-shared"
+ - CONFIGURE_OPTIONS: "--enable-shared"
+ - HOST: "arm32v7-linux-gnu"
+ LIBFFI_TEST_OPTIMIZATION: "-O0"
- HOST: "powerpc-eabisim"
RUNTESTFLAGS: "--target_board powerpc-eabisim"
- HOST: "or1k-elf"
@@ -34,8 +41,6 @@ jobs:
HOST: "moxie-elf"
LDFLAGS: "-Tsim.ld"
RUNTESTFLAGS: "--target_board moxie-sim"
- - CONFIGURE_OPTIONS: "--disable-shared"
- - CONFIGURE_OPTIONS: "--enable-shared"
steps:
- uses: actions/checkout@v2