335 lines
6.6 KiB
YAML
335 lines
6.6 KiB
YAML
stages:
|
|
- test
|
|
- release
|
|
|
|
variables:
|
|
GIT_SSL_NO_VERIFY: "1"
|
|
|
|
# Commit of ghc/ci-images repository from which to pull Docker images
|
|
DOCKER_REV: 1ac7f435c9312f10422a82d304194778378e2a1a
|
|
|
|
############################################################
|
|
# CI Step
|
|
############################################################
|
|
|
|
.debian:
|
|
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV"
|
|
tags:
|
|
- x86_64-linux
|
|
variables:
|
|
OS: "LINUX"
|
|
ARCH: "64"
|
|
|
|
.alpine:64bit:
|
|
image: "alpine:3.12"
|
|
tags:
|
|
- x86_64-linux
|
|
variables:
|
|
OS: "LINUX"
|
|
ARCH: "64"
|
|
|
|
.alpine:32bit:
|
|
image: "i386/alpine:3.12"
|
|
tags:
|
|
- x86_64-linux
|
|
variables:
|
|
OS: "LINUX"
|
|
ARCH: "32"
|
|
|
|
.linux:armv7:
|
|
image: "arm32v7/fedora"
|
|
tags:
|
|
- armv7-linux
|
|
variables:
|
|
OS: "LINUX"
|
|
ARCH: "ARM"
|
|
|
|
.linux:aarch64:
|
|
image: "arm64v8/fedora"
|
|
tags:
|
|
- aarch64-linux
|
|
variables:
|
|
OS: "LINUX"
|
|
ARCH: "ARM64"
|
|
|
|
.darwin:
|
|
tags:
|
|
- x86_64-darwin
|
|
variables:
|
|
OS: "DARWIN"
|
|
ARCH: "64"
|
|
|
|
.freebsd:
|
|
tags:
|
|
- x86_64-freebsd
|
|
variables:
|
|
OS: "FREEBSD"
|
|
ARCH: "64"
|
|
|
|
.root_cleanup:
|
|
after_script:
|
|
- BUILD_DIR=$CI_PROJECT_DIR
|
|
- echo "Cleaning $BUILD_DIR"
|
|
- cd $HOME
|
|
- test -n "$BUILD_DIR"
|
|
- shopt -s extglob
|
|
- rm -Rf "$BUILD_DIR"/!(out)
|
|
- exit 0
|
|
|
|
.test_ghcup_version:
|
|
script:
|
|
- ./.gitlab/script/ghcup_version.sh
|
|
variables:
|
|
JSON_VERSION: "0.0.4"
|
|
artifacts:
|
|
expire_in: 2 week
|
|
paths:
|
|
- golden
|
|
when: on_failure
|
|
|
|
.test_ghcup_version:linux:
|
|
extends:
|
|
- .test_ghcup_version
|
|
- .debian
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps.sh
|
|
|
|
.test_ghcup_version:linux32:
|
|
extends:
|
|
- .test_ghcup_version
|
|
- .alpine:32bit
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/alpine/install_deps.sh
|
|
|
|
.test_ghcup_version:armv7:
|
|
extends:
|
|
- .test_ghcup_version
|
|
- .linux:armv7
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps_manual.sh
|
|
|
|
.test_ghcup_version:aarch64:
|
|
extends:
|
|
- .test_ghcup_version
|
|
- .linux:aarch64
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps_manual.sh
|
|
|
|
.test_ghcup_version:darwin:
|
|
extends:
|
|
- .test_ghcup_version
|
|
- .darwin
|
|
- .root_cleanup
|
|
before_script:
|
|
- ./.gitlab/before_script/darwin/install_deps.sh
|
|
|
|
.test_ghcup_version:freebsd:
|
|
extends:
|
|
- .test_ghcup_version
|
|
- .freebsd
|
|
- .root_cleanup
|
|
before_script:
|
|
- ./.gitlab/before_script/freebsd/install_deps.sh
|
|
|
|
.release_ghcup:
|
|
script:
|
|
- ./.gitlab/script/ghcup_release.sh
|
|
artifacts:
|
|
expire_in: 2 week
|
|
paths:
|
|
- out
|
|
only:
|
|
- tags
|
|
variables:
|
|
JSON_VERSION: "0.0.4"
|
|
|
|
######## stack test ########
|
|
|
|
test:linux:stack:
|
|
stage: test
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps_minimal.sh
|
|
script:
|
|
- ./.gitlab/script/ghcup_stack.sh
|
|
extends:
|
|
- .debian
|
|
|
|
######## bootstrap test ########
|
|
|
|
test:linux:bootstrap_script:
|
|
stage: test
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps_minimal.sh
|
|
script:
|
|
- ./.gitlab/script/ghcup_bootstrap.sh
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
extends:
|
|
- .debian
|
|
|
|
######## linux test ########
|
|
|
|
test:linux:recommended:
|
|
stage: test
|
|
extends: .test_ghcup_version:linux
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
test:linux:latest:
|
|
stage: test
|
|
extends: .test_ghcup_version:linux
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
######## linux 32bit test ########
|
|
|
|
test:linux:recommended:32bit:
|
|
stage: test
|
|
extends: .test_ghcup_version:linux32
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.2.0.0"
|
|
|
|
######## arm tests ########
|
|
|
|
test:linux:recommended:armv7:
|
|
extends: .test_ghcup_version:armv7
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
when: manual
|
|
|
|
test:linux:recommended:aarch64:
|
|
extends: .test_ghcup_version:aarch64
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
when: manual
|
|
|
|
######## darwin test ########
|
|
|
|
test:mac:recommended:
|
|
stage: test
|
|
extends: .test_ghcup_version:darwin
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
test:mac:latest:
|
|
stage: test
|
|
extends: .test_ghcup_version:darwin
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
|
|
######## freebsd test ########
|
|
|
|
test:freebsd:recommended:
|
|
stage: test
|
|
extends: .test_ghcup_version:freebsd
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
test:freebsd:latest:
|
|
stage: test
|
|
extends: .test_ghcup_version:freebsd
|
|
variables:
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
|
|
######## linux release ########
|
|
|
|
release:linux:64bit:
|
|
stage: release
|
|
needs: ["test:linux:recommended", "test:linux:latest"]
|
|
extends:
|
|
- .alpine:64bit
|
|
- .release_ghcup
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/alpine/install_deps.sh
|
|
variables:
|
|
ARTIFACT: "x86_64-linux-ghcup"
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
|
|
release:linux:32bit:
|
|
stage: release
|
|
needs: ["test:linux:recommended:32bit"]
|
|
extends:
|
|
- .alpine:32bit
|
|
- .release_ghcup
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/alpine/install_deps.sh
|
|
variables:
|
|
ARTIFACT: "i386-linux-ghcup"
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.2.0.0"
|
|
|
|
release:linux:armv7:
|
|
stage: release
|
|
needs: ["test:linux:recommended:armv7"]
|
|
extends:
|
|
- .linux:armv7
|
|
- .release_ghcup
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps_manual.sh
|
|
variables:
|
|
ARTIFACT: "armv7-linux-ghcup"
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
release:linux:aarch64:
|
|
stage: release
|
|
needs: ["test:linux:recommended:aarch64"]
|
|
extends:
|
|
- .linux:aarch64
|
|
- .release_ghcup
|
|
before_script:
|
|
- ./.gitlab/before_script/linux/install_deps_manual.sh
|
|
variables:
|
|
ARTIFACT: "aarch64-linux-ghcup"
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|
|
######## darwin release ########
|
|
|
|
release:darwin:
|
|
stage: release
|
|
needs: ["test:mac:recommended", "test:mac:latest"]
|
|
extends:
|
|
- .darwin
|
|
- .release_ghcup
|
|
- .root_cleanup
|
|
before_script:
|
|
- ./.gitlab/before_script/darwin/install_deps.sh
|
|
variables:
|
|
ARTIFACT: "x86_64-apple-darwin-ghcup"
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
MACOSX_DEPLOYMENT_TARGET: "10.7"
|
|
|
|
|
|
######## freebsd release ########
|
|
|
|
release:freebsd:
|
|
stage: release
|
|
needs: ["test:freebsd:recommended", "test:freebsd:latest"]
|
|
extends:
|
|
- .freebsd
|
|
- .release_ghcup
|
|
- .root_cleanup
|
|
before_script:
|
|
- ./.gitlab/before_script/freebsd/install_deps.sh
|
|
variables:
|
|
ARTIFACT: "x86_64-portbld-freebsd-ghcup"
|
|
GHC_VERSION: "8.10.4"
|
|
CABAL_VERSION: "3.4.0.0"
|
|
|