Set host triplet for native builds
authorAnthony Green <green@moxielogic.com>
Mon, 19 Sep 2022 23:42:35 +0000 (19:42 -0400)
committerAnthony Green <green@moxielogic.com>
Mon, 19 Sep 2022 23:42:35 +0000 (19:42 -0400)
.github/workflows/build.yml

index 6c5b333c596fe7768534dc3c0412a009b7c8feb4..2694acd1a48286a8302c9fffd4a8f623a3ff55f8 100644 (file)
@@ -22,11 +22,14 @@ jobs:
       fail-fast: false
       matrix:
        include:
-         - MEVAL: "export CC=clang CXX=clang"
+         - HOST: "x86_64-pc-linux-gnu"
+           MEVAL: "export CC=clang CXX=clang"
          - HOST: "i386-pc-linux-gnu"
            MEVAL: 'export CC="gcc -m32" CXX="g++ -m32"'
-         - CONFIGURE_OPTIONS: "--disable-shared"
-         - CONFIGURE_OPTIONS: "--enable-shared"
+         - HOST: "x86_64-pc-linux-gnu"
+           CONFIGURE_OPTIONS: "--disable-shared"
+         - HOST: "x86_64-pc-linux-gnu"
+           CONFIGURE_OPTIONS: "--enable-shared"
          - HOST: "m68k-linux-gnu"
            MEVAL: 'export CC="m68k-linux-gnu-gcc-8 -mcpu=547x" CXX="m68k-linux-gnu-g++-8 -mcpu=547x"'
            CONFIGURE_OPTIONS: '--disable-shared'