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
8a16b0de
Verified
Commit
8a16b0de
authored
3 years ago
by
Julian Ospald
Browse files
Options
Downloads
Patches
Plain Diff
Fix tests
parent
9faf1763
No related branches found
No related tags found
1 merge request
!238
Implement 'ghcup run'
Pipeline
#47489
canceled
3 years ago
Stage: checks
Stage: quick-test
Stage: test
Stage: expensive-test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab/ghcup-run.files.windows
+3
-3
3 additions, 3 deletions
.gitlab/ghcup-run.files.windows
.gitlab/script/ghcup_version.sh
+3
-3
3 additions, 3 deletions
.gitlab/script/ghcup_version.sh
with
6 additions
and
6 deletions
.gitlab/ghcup-run.files.windows
+
3
−
3
View file @
8a16b0de
.
/
./cabal
.
./cabal
.exe
./cabal.shim
./ghc-8.10.7.exe
./ghc-8.10.7.shim
...
...
@@ -77,5 +77,5 @@
./runhaskell-8.10.7.shim
./runhaskell.exe
./runhaskell.shim
./stack
./stack
.exe
./stack.shim
This diff is collapsed.
Click to expand it.
.gitlab/script/ghcup_version.sh
+
3
−
3
View file @
8a16b0de
...
...
@@ -114,7 +114,7 @@ if [ "${ARCH}" = "64" ] ; then
else
expected
=
$(
cat
"
$(
cd
"
$(
dirname
"
$0
"
)
"
;
pwd
-P
)
/../ghcup-run.files"
|
sort
)
fi
actual
=
$(
cd
".bin"
&&
find |
sort
)
actual
=
$(
cd
".bin"
&&
find
.
|
sort
)
[
"
${
actual
}
"
=
"
${
expected
}
"
]
unset
actual expected
rm
-rf
.bin
...
...
@@ -148,7 +148,7 @@ else
eghcup
--offline
install
ghc 8.10.3
if
[
"
${
ARCH
}
"
=
"64"
]
;
then
expected
=
$(
cat
"
$(
cd
"
$(
dirname
"
$0
"
)
"
;
pwd
-P
)
/../ghc-8.10.3-linux.files"
|
sort
)
actual
=
$(
cd
"
${
GHCUP_DIR
}
/ghc/8.10.3/"
&&
find |
sort
)
actual
=
$(
cd
"
${
GHCUP_DIR
}
/ghc/8.10.3/"
&&
find
.
|
sort
)
[
"
${
actual
}
"
=
"
${
expected
}
"
]
unset
actual expected
fi
...
...
@@ -156,7 +156,7 @@ else
eghcup prefetch ghc 8.10.3
eghcup
--offline
install
ghc 8.10.3
expected
=
$(
cat
"
$(
cd
"
$(
dirname
"
$0
"
)
"
;
pwd
-P
)
/../ghc-8.10.3-windows.files"
|
sort
)
actual
=
$(
cd
"
${
GHCUP_DIR
}
/ghc/8.10.3/"
&&
find |
sort
)
actual
=
$(
cd
"
${
GHCUP_DIR
}
/ghc/8.10.3/"
&&
find
.
|
sort
)
[
"
${
actual
}
"
=
"
${
expected
}
"
]
unset
actual expected
else
...
...
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