Skip to content
Snippets Groups Projects
Commit f535958a authored by Ben Gamari's avatar Ben Gamari :turtle:
Browse files

gitlab-ci: Disable LLVM on Darwin

parent 161bbdb3
No related branches found
No related tags found
1 merge request!2gitlab-ci: Fix LLVM installation on Darwin
Pipeline #46404 passed
...@@ -22,7 +22,7 @@ variables: ...@@ -22,7 +22,7 @@ variables:
echo "Fetching binary distribution from $BINDIST_URL..." echo "Fetching binary distribution from $BINDIST_URL..."
curl -L "$BINDIST_URL" | tar -xJ curl -L "$BINDIST_URL" | tar -xJ
cd ghc-* cd ghc-*
./configure --prefix="$CI_PROJECT_DIR/test-ghc" ./configure --prefix="$CI_PROJECT_DIR/test-ghc" "${CONFIGURE_ARGS[@]}"
make install make install
cd "$CI_PROJECT_DIR" cd "$CI_PROJECT_DIR"
- rm -Rf tmp - rm -Rf tmp
...@@ -60,6 +60,7 @@ x86_64-darwin: ...@@ -60,6 +60,7 @@ x86_64-darwin:
extends: .build extends: .build
variables: variables:
BINDIST_URL: "https://gitlab.haskell.org/ghc/ghc/-/jobs/artifacts/$BINDIST_REF/raw/ghc-x86_64-apple-darwin.tar.xz?job=validate-x86_64-darwin" BINDIST_URL: "https://gitlab.haskell.org/ghc/ghc/-/jobs/artifacts/$BINDIST_REF/raw/ghc-x86_64-apple-darwin.tar.xz?job=validate-x86_64-darwin"
NO_LLVM: 1
tags: tags:
- x86_64-darwin - x86_64-darwin
...@@ -67,6 +68,7 @@ aarch64-darwin: ...@@ -67,6 +68,7 @@ aarch64-darwin:
extends: .build extends: .build
variables: variables:
BINDIST_URL: "https://gitlab.haskell.org/ghc/ghc/-/jobs/artifacts/$BINDIST_REF/raw/ghc-arm64-apple-darwin.tar.xz?job=validate-aarch64-darwin" BINDIST_URL: "https://gitlab.haskell.org/ghc/ghc/-/jobs/artifacts/$BINDIST_REF/raw/ghc-arm64-apple-darwin.tar.xz?job=validate-aarch64-darwin"
NO_LLVM: 1
tags: tags:
- aarch64-darwin - aarch64-darwin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment