Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
ghcup-hs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Haskell
ghcup-hs
Commits
56feb7c0
Verified
Commit
56feb7c0
authored
4 years ago
by
Julian Ospald
Browse files
Options
Downloads
Patches
Plain Diff
Use stages in CI
parent
f547a6eb
No related branches found
Branches containing commit
Tags
ghc-8.6.1-alpha2
Tags containing commit
1 merge request
!71
Support ARM/AARCH
Pipeline
#32008
canceled
4 years ago
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+25
-5
25 additions, 5 deletions
.gitlab-ci.yml
with
25 additions
and
5 deletions
.gitlab-ci.yml
+
25
−
5
View file @
56feb7c0
stages
:
-
test
-
release
variables
:
GIT_SSL_NO_VERIFY
:
"
1"
...
...
@@ -142,6 +146,7 @@ variables:
######## stack test ########
test:linux:stack
:
stage
:
test
before_script
:
-
./.gitlab/before_script/linux/install_deps_minimal.sh
script
:
...
...
@@ -152,6 +157,7 @@ test:linux:stack:
######## bootstrap test ########
test:linux:bootstrap_script
:
stage
:
test
before_script
:
-
./.gitlab/before_script/linux/install_deps_minimal.sh
script
:
...
...
@@ -165,21 +171,23 @@ test:linux:bootstrap_script:
######## 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"
allow_failure
:
true
######## linux 32bit test ########
test:linux:recommended:32bit
:
stage
:
test
extends
:
.test_ghcup_version:linux32
variables
:
GHC_VERSION
:
"
8.10.4"
...
...
@@ -193,7 +201,6 @@ test:linux:recommended:armv7:
GHC_VERSION
:
"
8.10.4"
CABAL_VERSION
:
"
3.4.0.0"
when
:
manual
allow_failure
:
true
test:linux:recommended:aarch64
:
extends
:
.test_ghcup_version:aarch64
...
...
@@ -201,43 +208,46 @@ test:linux:recommended:aarch64:
GHC_VERSION
:
"
8.10.4"
CABAL_VERSION
:
"
3.4.0.0"
when
:
manual
allow_failure
:
true
######## 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"
allow_failure
:
true
######## 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"
allow_failure
:
true
######## linux release ########
release:linux:64bit
:
stage
:
release
needs
:
[
"
test:linux:recommended"
,
"
test:linux:latest"
]
extends
:
-
.alpine:64bit
-
.release_ghcup
...
...
@@ -250,6 +260,8 @@ release:linux:64bit:
release:linux:32bit
:
stage
:
release
needs
:
[
"
test:linux:recommended:32bit"
]
extends
:
-
.alpine:32bit
-
.release_ghcup
...
...
@@ -261,6 +273,8 @@ release:linux:32bit:
CABAL_VERSION
:
"
3.2.0.0"
release:linux:armv7
:
stage
:
release
needs
:
[
"
test:linux:recommended:armv7"
]
extends
:
-
.linux:armv7
-
.release_ghcup
...
...
@@ -272,6 +286,8 @@ release:linux:armv7:
CABAL_VERSION
:
"
3.4.0.0"
release:linux:aarch64
:
stage
:
release
needs
:
[
"
test:linux:recommended:aarch64"
]
extends
:
-
.linux:aarch64
-
.release_ghcup
...
...
@@ -285,6 +301,8 @@ release:linux:aarch64:
######## darwin release ########
release:darwin
:
stage
:
release
needs
:
[
"
test:mac:recommended"
,
"
test:mac:latest"
]
extends
:
-
.darwin
-
.release_ghcup
...
...
@@ -301,6 +319,8 @@ release:darwin:
######## freebsd release ########
release:freebsd
:
stage
:
release
needs
:
[
"
test:freebsd:recommended"
,
"
test:freebsd:latest"
]
extends
:
-
.freebsd
-
.release_ghcup
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment