ghcup-hs/.gitlab-ci.yml

561 lines
12 KiB
YAML
Raw Normal View History

2021-02-25 13:12:07 +00:00
stages:
2021-03-11 16:03:51 +00:00
- hlint
2021-02-25 13:12:07 +00:00
- test
- release
2020-04-15 07:45:18 +00:00
variables:
GIT_SSL_NO_VERIFY: "1"
# Commit of ghc/ci-images repository from which to pull Docker images
2021-06-15 12:00:30 +00:00
DOCKER_REV: 8d0224e6b2a08157649651e69302380b2bd24e11
2020-04-15 07:45:18 +00:00
############################################################
# CI Step
############################################################
.debian:
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV"
tags:
- x86_64-linux
2020-04-19 15:00:05 +00:00
variables:
OS: "LINUX"
2021-02-24 14:19:29 +00:00
ARCH: "64"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2021-07-15 20:39:37 +00:00
CROSS: ""
2020-04-19 15:00:05 +00:00
2020-04-19 17:23:54 +00:00
.alpine:64bit:
2020-09-21 10:23:14 +00:00
image: "alpine:3.12"
2020-04-19 15:00:05 +00:00
tags:
- x86_64-linux
variables:
OS: "LINUX"
2021-02-24 14:19:29 +00:00
ARCH: "64"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2020-04-19 17:23:54 +00:00
.alpine:32bit:
2020-09-21 10:23:14 +00:00
image: "i386/alpine:3.12"
2020-04-19 17:23:54 +00:00
tags:
- x86_64-linux
variables:
OS: "LINUX"
2021-02-24 14:19:29 +00:00
ARCH: "32"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2021-02-24 14:19:29 +00:00
.linux:armv7:
2021-07-10 18:25:27 +00:00
image: "registry.gitlab.haskell.org/ghc/ci-images/armv7-linux-deb10:$DOCKER_REV"
2021-02-24 14:19:29 +00:00
tags:
- armv7-linux
variables:
OS: "LINUX"
ARCH: "ARM"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2021-02-24 14:19:29 +00:00
.linux:aarch64:
2021-07-10 18:25:27 +00:00
image: "registry.gitlab.haskell.org/ghc/ci-images/aarch64-linux-deb10:$DOCKER_REV"
2021-02-24 14:19:29 +00:00
tags:
- aarch64-linux
variables:
OS: "LINUX"
ARCH: "ARM64"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2020-04-15 07:45:18 +00:00
.darwin:
tags:
- x86_64-darwin
2020-04-19 15:00:05 +00:00
variables:
OS: "DARWIN"
2021-02-24 14:19:29 +00:00
ARCH: "64"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2020-04-15 07:45:18 +00:00
.darwin:aarch64:
tags:
- aarch64-darwin-m1
variables:
OS: "DARWIN"
ARCH: "ARM64"
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
.freebsd:
tags:
- x86_64-freebsd
2020-04-19 15:00:05 +00:00
variables:
OS: "FREEBSD"
2021-02-24 14:19:29 +00:00
ARCH: "64"
2021-05-14 21:09:45 +00:00
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
.windows:
tags:
- new-x86_64-windows
variables:
OS: "WINDOWS"
ARCH: "64"
CABAL_DIR: "$CI_PROJECT_DIR/cabal"
2020-04-19 15:00:05 +00:00
.root_cleanup:
after_script:
2021-05-14 21:09:45 +00:00
- bash ./.gitlab/after_script.sh
2020-04-15 07:45:18 +00:00
.test_ghcup_version:
script:
2021-05-14 21:09:45 +00:00
- bash ./.gitlab/script/ghcup_version.sh
2020-04-15 07:45:18 +00:00
variables:
JSON_VERSION: "0.0.6"
artifacts:
expire_in: 2 week
paths:
- golden
- dist-newstyle/cache/
when: on_failure
2020-04-15 07:45:18 +00:00
# .test_ghcup_scoop:
# script:
# - cl /O1 scoop-better-shimexe/shim.c
2020-04-15 07:45:18 +00:00
.test_ghcup_version:linux:
extends:
- .test_ghcup_version
- .debian
before_script:
- ./.gitlab/before_script/linux/install_deps.sh
2020-08-09 09:21:49 +00:00
.test_ghcup_version:linux32:
extends:
- .test_ghcup_version
- .alpine:32bit
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
2021-02-24 14:19:29 +00:00
.test_ghcup_version:armv7:
extends:
- .test_ghcup_version
- .linux:armv7
before_script:
2021-07-10 18:25:27 +00:00
- ./.gitlab/before_script/linux/install_deps.sh
2021-02-24 14:19:29 +00:00
.test_ghcup_version:aarch64:
extends:
- .test_ghcup_version
- .linux:aarch64
before_script:
2021-07-10 18:25:27 +00:00
- ./.gitlab/before_script/linux/install_deps.sh
2021-02-24 14:19:29 +00:00
2020-04-15 07:45:18 +00:00
.test_ghcup_version:darwin:
extends:
- .test_ghcup_version
- .darwin
2020-04-19 15:00:05 +00:00
- .root_cleanup
2020-04-15 07:45:18 +00:00
before_script:
- ./.gitlab/before_script/darwin/install_deps.sh
.test_ghcup_version:darwin:aarch64:
extends:
- .test_ghcup_version
- .darwin:aarch64
- .root_cleanup
2021-06-13 15:42:24 +00:00
script: |
set -Eeuo pipefail
function runInNixShell() {
2021-06-15 12:00:30 +00:00
time nix-shell $CI_PROJECT_DIR/.gitlab/shell.nix \
2021-06-13 15:42:24 +00:00
-I nixpkgs=https://github.com/angerman/nixpkgs/archive/75f7281738b.tar.gz \
2021-06-13 20:52:26 +00:00
--argstr system "aarch64-darwin" \
2021-06-13 15:42:24 +00:00
--pure \
2021-06-15 12:00:30 +00:00
--keep CI_PROJECT_DIR \
--keep MACOSX_DEPLOYMENT_TARGET \
--keep JSON_VERSION \
--keep ARTIFACT \
--keep OS \
--keep ARCH \
--keep CABAL_DIR \
--keep GHC_VERSION \
--keep CABAL_VERSION \
2021-06-13 15:42:24 +00:00
--run "$1" 2>&1
}
runInNixShell ./.gitlab/before_script/darwin/install_deps.sh 2>&1
runInNixShell ./.gitlab/script/ghcup_version.sh 2>&1
.test_ghcup_version:freebsd:
extends:
- .test_ghcup_version
- .freebsd
2020-04-19 15:00:05 +00:00
- .root_cleanup
before_script:
- ./.gitlab/before_script/freebsd/install_deps.sh
2021-05-14 21:09:45 +00:00
.test_ghcup_version:windows:
extends:
- .test_ghcup_version
- .windows
- .root_cleanup
before_script:
- set CABAL_DIR="$CI_PROJECT_DIR/cabal"
- bash ./.gitlab/before_script/windows/install_deps.sh
# .test_ghcup_scoop:windows:
# extends:
# - .windows
# - .test_ghcup_scoop
# - .root_cleanup
2020-04-19 15:00:05 +00:00
.release_ghcup:
script:
2021-05-14 21:09:45 +00:00
- bash ./.gitlab/script/ghcup_release.sh
2020-04-19 15:00:05 +00:00
artifacts:
expire_in: 2 week
paths:
- out
- dist-newstyle/cache/
2020-04-19 15:00:05 +00:00
only:
- tags
2021-02-24 14:19:29 +00:00
variables:
JSON_VERSION: "0.0.6"
2020-04-15 07:45:18 +00:00
2020-09-30 21:42:30 +00:00
######## stack test ########
test:linux:stack:
2021-02-25 13:12:07 +00:00
stage: test
2020-09-30 21:42:30 +00:00
before_script:
- ./.gitlab/before_script/linux/install_deps_minimal.sh
script:
- ./.gitlab/script/ghcup_stack.sh
extends:
- .debian
2021-03-11 16:03:51 +00:00
needs: []
2020-09-30 21:42:30 +00:00
2020-09-29 08:23:11 +00:00
######## bootstrap test ########
test:linux:bootstrap_script:
2021-02-25 13:12:07 +00:00
stage: test
2020-09-29 08:23:11 +00:00
before_script:
2020-09-29 08:57:21 +00:00
- ./.gitlab/before_script/linux/install_deps_minimal.sh
2020-09-29 08:23:11 +00:00
script:
- ./.gitlab/script/ghcup_bootstrap.sh
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2020-09-29 08:23:11 +00:00
extends:
- .debian
2021-07-04 17:12:37 +00:00
- .root_cleanup
needs: []
test:windows:bootstrap_powershell_script:
stage: test
script:
- ./bootstrap-haskell.ps1 -InstallDir $CI_PROJECT_DIR -BootstrapUrl $CI_PROJECT_DIR/bootstrap-haskell -InBash
after_script:
- "[Environment]::SetEnvironmentVariable('GHCUP_INSTALL_BASE_PREFIX', $null, [System.EnvironmentVariableTarget]::User)"
- "[Environment]::SetEnvironmentVariable('GHCUP_MSYS2', $null, [System.EnvironmentVariableTarget]::User)"
- "[Environment]::SetEnvironmentVariable('CABAL_DIR', $null, [System.EnvironmentVariableTarget]::User)"
- bash ./.gitlab/after_script.sh
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-07-04 17:12:37 +00:00
CABAL_VERSION: "3.4.0.0"
extends:
- .windows
2021-03-11 16:03:51 +00:00
needs: []
2020-09-29 08:23:11 +00:00
######## linux test ########
2020-04-15 07:45:18 +00:00
test:linux:recommended:
2021-02-25 13:12:07 +00:00
stage: test
2020-04-15 07:45:18 +00:00
extends: .test_ghcup_version:linux
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2021-03-11 16:03:51 +00:00
needs: []
2020-04-15 07:45:18 +00:00
test:linux:latest:
2021-02-25 13:12:07 +00:00
stage: test
2020-04-15 07:45:18 +00:00
extends: .test_ghcup_version:linux
variables:
2021-06-07 18:39:51 +00:00
GHC_VERSION: "9.0.1"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2021-03-11 16:03:51 +00:00
needs: []
2020-04-15 07:45:18 +00:00
2021-07-15 20:39:37 +00:00
test:linux:cross-armv7:
stage: test
extends:
- .test_ghcup_version
- .debian
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.5"
GHC_TARGET_VERSION: "8.10.6"
2021-07-15 20:39:37 +00:00
CABAL_VERSION: "3.4.0.0"
CROSS: "arm-linux-gnueabihf"
needs: []
when: manual
allow_failure: true
2021-07-15 20:39:37 +00:00
before_script:
- ./.gitlab/before_script/linux/install_deps.sh
script:
- ./.gitlab/script/ghcup_cross.sh
test:linux:git:hadrian:
stage: test
extends:
- .test_ghcup_version
- .debian
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
GHC_GIT_TAG: "ghc-9.0.1-release"
GHC_GIT_VERSION: "9.0.1"
CABAL_VERSION: "3.4.0.0"
CROSS: ""
needs: []
when: manual
allow_failure: true
before_script:
- ./.gitlab/before_script/linux/install_deps.sh
script:
- ./.gitlab/script/ghcup_git.sh
2021-07-15 20:39:37 +00:00
2020-08-09 09:21:49 +00:00
######## linux 32bit test ########
test:linux:recommended:32bit:
2021-02-25 13:12:07 +00:00
stage: test
2020-08-09 09:21:49 +00:00
extends: .test_ghcup_version:linux32
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2020-08-09 09:21:49 +00:00
CABAL_VERSION: "3.2.0.0"
2021-03-11 16:03:51 +00:00
needs: []
2020-04-15 07:45:18 +00:00
2021-02-24 14:19:29 +00:00
######## arm tests ########
test:linux:recommended:armv7:
2021-03-11 16:03:51 +00:00
stage: test
2021-02-24 14:19:29 +00:00
extends: .test_ghcup_version:armv7
variables:
2021-06-09 17:45:23 +00:00
GHC_VERSION: "8.10.4"
2021-02-24 14:19:29 +00:00
CABAL_VERSION: "3.4.0.0"
2021-07-15 20:39:37 +00:00
CROSS: ""
2021-02-24 14:19:29 +00:00
when: manual
2021-03-11 16:03:51 +00:00
needs: []
2021-02-24 14:19:29 +00:00
test:linux:recommended:aarch64:
2021-03-11 16:03:51 +00:00
stage: test
2021-02-24 14:19:29 +00:00
extends: .test_ghcup_version:aarch64
variables:
2021-06-09 17:45:23 +00:00
GHC_VERSION: "8.10.4"
2021-02-24 14:19:29 +00:00
CABAL_VERSION: "3.4.0.0"
2021-07-15 20:39:37 +00:00
CROSS: ""
2021-02-24 14:19:29 +00:00
when: manual
2021-03-11 16:03:51 +00:00
needs: []
2021-02-24 14:19:29 +00:00
######## darwin test ########
2020-04-15 07:45:18 +00:00
test:mac:recommended:
2021-02-25 13:12:07 +00:00
stage: test
2020-04-15 07:45:18 +00:00
extends: .test_ghcup_version:darwin
variables:
2021-06-09 17:45:23 +00:00
GHC_VERSION: "8.10.4"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2021-03-11 16:03:51 +00:00
needs: []
2020-04-15 07:45:18 +00:00
test:mac:latest:
2021-02-25 13:12:07 +00:00
stage: test
2020-04-15 07:45:18 +00:00
extends: .test_ghcup_version:darwin
variables:
2021-06-07 18:39:51 +00:00
GHC_VERSION: "9.0.1"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2021-03-11 16:03:51 +00:00
needs: []
2021-06-09 17:03:48 +00:00
test:mac:recommended:aarch64:
stage: test
extends: .test_ghcup_version:darwin:aarch64
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-06-09 17:03:48 +00:00
CABAL_VERSION: "3.4.0.0"
needs: []
2021-06-12 14:08:30 +00:00
allow_failure: true
######## freebsd test ########
test:freebsd:recommended:
2021-02-25 13:12:07 +00:00
stage: test
extends: .test_ghcup_version:freebsd
variables:
2021-06-09 17:45:23 +00:00
GHC_VERSION: "8.10.4"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2021-03-11 16:03:51 +00:00
allow_failure: true # freebsd runners are unreliable
when: manual
needs: []
2020-04-15 07:45:18 +00:00
2021-05-14 21:09:45 +00:00
######## windows test ########
test:windows:recommended:
stage: test
extends: .test_ghcup_version:windows
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-05-14 21:09:45 +00:00
CABAL_VERSION: "3.4.0.0"
needs: []
2020-04-19 15:00:05 +00:00
# test:windows:scoop:
# stage: test
# extends: .test_ghcup_scoop:windows
# needs: []
2020-04-19 15:00:05 +00:00
######## linux release ########
2020-04-19 17:23:54 +00:00
release:linux:64bit:
2021-02-25 13:12:07 +00:00
stage: release
needs: ["test:linux:recommended", "test:linux:latest"]
2020-04-19 17:23:54 +00:00
extends:
- .alpine:64bit
- .release_ghcup
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
variables:
ARTIFACT: "x86_64-linux-ghcup"
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2020-04-19 17:23:54 +00:00
release:linux:32bit:
2021-02-25 13:12:07 +00:00
stage: release
needs: ["test:linux:recommended:32bit"]
2020-04-19 15:00:05 +00:00
extends:
2020-04-19 17:23:54 +00:00
- .alpine:32bit
2020-04-19 15:00:05 +00:00
- .release_ghcup
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
variables:
2020-04-27 14:23:44 +00:00
ARTIFACT: "i386-linux-ghcup"
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2020-04-19 17:23:54 +00:00
CABAL_VERSION: "3.2.0.0"
2020-04-19 15:00:05 +00:00
2021-02-24 14:19:29 +00:00
release:linux:armv7:
2021-02-25 13:12:07 +00:00
stage: release
needs: ["test:linux:recommended:armv7"]
2021-02-24 14:19:29 +00:00
extends:
- .linux:armv7
- .release_ghcup
before_script:
2021-07-10 18:25:27 +00:00
- ./.gitlab/before_script/linux/install_deps.sh
2021-02-24 14:19:29 +00:00
variables:
ARTIFACT: "armv7-linux-ghcup"
2021-06-09 17:45:23 +00:00
GHC_VERSION: "8.10.4"
2021-02-24 14:19:29 +00:00
CABAL_VERSION: "3.4.0.0"
2021-07-15 20:39:37 +00:00
CROSS: ""
2021-02-24 14:19:29 +00:00
release:linux:aarch64:
2021-02-25 13:12:07 +00:00
stage: release
needs: ["test:linux:recommended:aarch64"]
2021-02-24 14:19:29 +00:00
extends:
- .linux:aarch64
- .release_ghcup
before_script:
2021-07-10 18:25:27 +00:00
- ./.gitlab/before_script/linux/install_deps.sh
2021-02-24 14:19:29 +00:00
variables:
ARTIFACT: "aarch64-linux-ghcup"
2021-06-09 17:45:23 +00:00
GHC_VERSION: "8.10.4"
2021-02-24 14:19:29 +00:00
CABAL_VERSION: "3.4.0.0"
2021-07-15 20:39:37 +00:00
CROSS: ""
2020-04-19 15:00:05 +00:00
######## darwin release ########
release:darwin:
2021-02-25 13:12:07 +00:00
stage: release
needs: ["test:mac:recommended", "test:mac:latest"]
2020-04-19 15:00:05 +00:00
extends:
- .darwin
- .release_ghcup
- .root_cleanup
before_script:
- ./.gitlab/before_script/darwin/install_deps.sh
variables:
ARTIFACT: "x86_64-apple-darwin-ghcup"
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2020-04-19 15:00:05 +00:00
MACOSX_DEPLOYMENT_TARGET: "10.7"
2021-06-09 17:45:23 +00:00
release:darwin:aarch64:
stage: release
needs: ["test:mac:recommended:aarch64"]
extends:
- .darwin:aarch64
- .release_ghcup
- .root_cleanup
2021-06-13 20:52:26 +00:00
script: |
set -Eeuo pipefail
function runInNixShell() {
2021-07-13 17:41:12 +00:00
time nix-shell $CI_PROJECT_DIR/.gitlab/shell.nix \
2021-06-13 20:52:26 +00:00
-I nixpkgs=https://github.com/angerman/nixpkgs/archive/75f7281738b.tar.gz \
--argstr system "aarch64-darwin" \
--pure \
2021-07-13 17:41:12 +00:00
--keep CI_PROJECT_DIR \
2021-06-15 12:00:30 +00:00
--keep MACOSX_DEPLOYMENT_TARGET \
2021-07-13 17:41:12 +00:00
--keep JSON_VERSION \
--keep ARTIFACT \
--keep OS \
--keep ARCH \
--keep CABAL_DIR \
--keep GHC_VERSION \
--keep CABAL_VERSION \
2021-06-13 20:52:26 +00:00
--run "$1" 2>&1
}
runInNixShell ./.gitlab/before_script/darwin/install_deps.sh 2>&1
runInNixShell ./.gitlab/script/ghcup_release.sh 2>&1
2021-06-09 17:45:23 +00:00
variables:
ARTIFACT: "aarch64-apple-darwin-ghcup"
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-06-09 17:45:23 +00:00
CABAL_VERSION: "3.4.0.0"
MACOSX_DEPLOYMENT_TARGET: "10.7"
2021-06-12 14:08:30 +00:00
allow_failure: true
2021-06-09 17:45:23 +00:00
2020-04-19 15:00:05 +00:00
######## freebsd release ########
release:freebsd:
2021-02-25 13:12:07 +00:00
stage: release
2021-06-07 18:39:51 +00:00
needs: ["test:freebsd:recommended"]
2020-04-19 15:00:05 +00:00
extends:
- .freebsd
- .release_ghcup
- .root_cleanup
2021-06-13 20:52:26 +00:00
before_script:
- ./.gitlab/before_script/freebsd/install_deps.sh
2020-04-19 15:00:05 +00:00
variables:
ARTIFACT: "x86_64-portbld-freebsd-ghcup"
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-02-20 22:03:44 +00:00
CABAL_VERSION: "3.4.0.0"
2021-06-12 14:08:30 +00:00
allow_failure: true
2020-04-19 15:00:05 +00:00
2021-05-14 21:09:45 +00:00
######## windows release ########
release:windows:
stage: release
needs: ["test:windows:recommended"]
extends:
- .windows
- .release_ghcup
- .root_cleanup
before_script:
- bash ./.gitlab/before_script/windows/install_deps.sh
variables:
ARTIFACT: "x86_64-mingw64-ghcup"
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-05-14 21:09:45 +00:00
CABAL_VERSION: "3.4.0.0"
2021-03-11 16:03:51 +00:00
######## hlint ########
hlint:
stage: hlint
extends:
- .alpine:64bit
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
script:
- ./.gitlab/script/hlint.sh
variables:
2021-08-14 15:01:27 +00:00
GHC_VERSION: "8.10.6"
2021-03-11 16:03:51 +00:00
CABAL_VERSION: "3.4.0.0"
JSON_VERSION: "0.0.4"
allow_failure: true
artifacts:
expire_in: 2 week
paths:
- report.html
when: on_failure