summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2021-07-05 08:08:08 -0400
committerAnthony Green <green@moxielogic.com>2021-07-05 08:08:08 -0400
commitdf50aceea6e4640978e0888d442e88150427ecf9 (patch)
tree2bda881fa3cd9b63103e545a1a84ee14b06d410e
parent21f16625fef2a52851299c5fd87e3d9df1210395 (diff)
downloadlibffi-df50aceea6e4640978e0888d442e88150427ecf9.tar.gz
More options
-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