summaryrefslogtreecommitdiff
path: root/.appveyor.sh
diff options
context:
space:
mode:
authorCheng Shao <astrohavoc@gmail.com>2022-09-12 16:07:55 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-09-13 10:29:07 -0400
commitc14370d765efb81ead9a80dc5450dc97e3167b6e (patch)
tree3a83fd30ef4735614e41ef155cd35801cf09da73 /.appveyor.sh
parent08f6730cd04ae9cdba30c0e371522ddc9a25b716 (diff)
downloadhaskell-c14370d765efb81ead9a80dc5450dc97e3167b6e.tar.gz
ci: remove unused appveyor config
Diffstat (limited to '.appveyor.sh')
-rw-r--r--.appveyor.sh44
1 files changed, 0 insertions, 44 deletions
diff --git a/.appveyor.sh b/.appveyor.sh
deleted file mode 100644
index 1a3e597da4..0000000000
--- a/.appveyor.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-# Configure the environment
-MSYSTEM=MINGW64
-THREADS=9
-SKIP_PERF_TESTS=YES
-BUILD_FLAVOUR=
-source /etc/profile || true # a terrible, terrible workaround for msys2 brokenness
-
-# Don't set -e until after /etc/profile is sourced
-set -ex
-cd $APPVEYOR_BUILD_FOLDER
-
-case "$1" in
- "prepare")
- # Prepare the tree
- git config remote.origin.url git://github.com/ghc/ghc.git
- git config --global url."git://github.com/ghc/packages-".insteadOf git://github.com/ghc/packages/
- git submodule init
- git submodule --quiet update --recursive
- ;;
- "build")
- # Build the compiler
- ./boot
- cat <<EOF >> mk/build.mk
- BuildFlavour=$BUILD_FLAVOUR
- ifneq "\$(BuildFlavour)" ""
- include mk/flavours/\$(BuildFlavour).mk
- endif
-EOF
- ./configure --enable-tarballs-autodownload
- make -j$THREADS
- ;;
-
- "test")
- make binary-dist
- curl https://ghc-artifacts.s3.amazonaws.com/tools/ghc-artifact-collector-x86_64-windows --output ghc-artifact-collector
- ./ghc-artifact-collector *.tar.xz
- make test THREADS=$THREADS
- ;;
-
- *)
- echo "$0: unknown mode $1"
- exit 1
- ;;
-esac