[Git][ghc/ghc][master] Hadrian: fix OSX build failure and add an OSX/Hadrian CI job
Marge Bot
gitlab at gitlab.haskell.org
Tue Jun 4 05:10:24 UTC 2019
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
114b014f by Alp Mestanogullari at 2019-06-04T05:10:20Z
Hadrian: fix OSX build failure and add an OSX/Hadrian CI job
The OSX build failure introduced in 3aa71a22 was due to a change in the
glob we use to collect libffi shared libraries in hadrian/src/Rules/Libffi.hs.
This commit fixes the problem and adds an OSX CI job that builds GHC with
Hadrian, to make sure we don't break it again.
- - - - -
2 changed files:
- .gitlab-ci.yml
- hadrian/src/Rules/Libffi.hs
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -278,6 +278,46 @@ validate-x86_64-darwin:
- cabal-cache
- toolchain
+validate-x86_64-darwin-hadrian:
+ <<: *only-default
+ stage: full-build
+ tags:
+ - x86_64-darwin
+ variables:
+ GHC_VERSION: 8.6.3
+ MACOSX_DEPLOYMENT_TARGET: "10.7"
+ ac_cv_func_clock_gettime: "no"
+ LANG: "en_US.UTF-8"
+ CONFIGURE_ARGS: --with-intree-gmp
+ TEST_ENV: "x86_64-darwin"
+ before_script:
+ - git clean -xdf && git submodule foreach git clean -xdf
+ - python3 .gitlab/fix-submodules.py
+ - git submodule sync --recursive
+ - git submodule update --init --recursive
+ - git checkout .gitmodules
+ - "git fetch https://gitlab.haskell.org/ghc/ghc-performance-notes.git refs/notes/perf:refs/notes/perf || true"
+
+ - bash .gitlab/darwin-init.sh
+ - PATH="`pwd`/toolchain/bin:$PATH"
+ script:
+ - cabal update
+ - ./boot
+ - ./configure $CONFIGURE_ARGS
+ - hadrian/build.cabal.sh -j`mk/detect-cpu-count.sh` --docs=no-sphinx binary-dist
+ - hadrian/build.cabal.sh -j`mk/detect-cpu-count.sh` --docs=no-sphinx test --summary-junit=./junit.xml
+ - mv _build/bindist/ghc*.tar.xz ghc.tar.xz
+ after_script:
+ - cp -Rf $HOME/.cabal cabal-cache
+ artifacts:
+ when: always
+ expire_in: 2 week
+ reports:
+ junit: junit.xml
+ paths:
+ - ghc.tar.xz
+ - junit.xml
+
.validate-linux:
extends: .validate
tags:
=====================================
hadrian/src/Rules/Libffi.hs
=====================================
@@ -178,7 +178,7 @@ libffiRules = do
| windows = "dll"
| osx = "dylib"
| otherwise = "so"
- filepat = "lib" ++ libffiName'' ++ "*." ++ dynlibext ++ "*"
+ filepat = "lib" ++ libffiName'' ++ "." ++ dynlibext ++ "*"
liftIO $ getDirectoryFilesIO "." [libfilesDir -/- filepat]
writeFileLines dynLibMan dynLibFiles
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/commit/114b014f7ed346727241c78ef3e0bf965d94edfc
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/commit/114b014f7ed346727241c78ef3e0bf965d94edfc
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20190604/23676edb/attachment-0001.html>
More information about the ghc-commits
mailing list