From 1d3f4f835175c658c63e96be12052b80d27cf6fa Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sun, 25 Mar 2018 18:45:50 +0430 Subject: [PATCH] [ci] Add a build only apple-gcc-4.2 i686 bot --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 19beeee..73d3327 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,6 +15,18 @@ jobs: - run: make 2>&1 | grep -v -e '^/var/folders/*' -e '^[[:space:]]*\.section' -e '^[[:space:]]*\^[[:space:]]*~*' - run: make check || .ci/fail.sh + macos-notest-apple-gcc-i686-4.2: + macos: + xcode: "8.3.3" + steps: + - checkout + - run: brew update-reset + - run: brew install wget pkg-config libtool ragel + - run: wget https://packages.macports.org/apple-gcc42/apple-gcc42-5666.3_15+universal.darwin_15.i386-x86_64.tbz2 && tar zxvf apple-gcc42-5666.3_15+universal.darwin_15.i386-x86_64.tbz2 + - run: CPP=$PWD/opt/local/bin/i686-apple-darwin15-cpp-apple-4.2.1 CC=$PWD/opt/local/bin/i686-apple-darwin15-gcc-apple-4.2.1 CXX=$PWD/opt/local/bin/i686-apple-darwin15-g++-apple-4.2.1 ./autogen.sh + # Ignoring assembler complains, https://stackoverflow.com/a/39867021 + - run: make 2>&1 | grep -v -e '^/var/folders/*' -e '^[[:space:]]*\.section' -e '^[[:space:]]*\^[[:space:]]*~*' + distcheck: docker: - image: ubuntu:17.10 @@ -178,6 +190,7 @@ workflows: jobs: # macOS - macos-llvm-gcc-4.2 + - macos-notest-apple-gcc-i686-4.2 # both autotools and cmake - distcheck -- 2.7.4