This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1221 from power-fungus/install-via-cabal
add possibility to run `install.hs` from cabal
- Loading branch information
Showing
21 changed files
with
909 additions
and
599 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
jobs: | ||
- job: Linux_installhs_Stack | ||
timeoutInMinutes: 0 | ||
pool: | ||
vmImage: ubuntu-16.04 | ||
strategy: | ||
matrix: | ||
shake: | ||
YAML_FILE: install/shake.yaml | ||
steps: | ||
- bash: | | ||
export STACK_ROOT="$(Build.SourcesDirectory)"/.stack-root | ||
mkdir -p ~/.local/bin | ||
curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | \ | ||
tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' | ||
displayName: Install stack | ||
- bash: | | ||
source .azure/linux.bashrc | ||
stack setup --stack-yaml $(YAML_FILE) | ||
displayName: Install GHC | ||
- bash: | | ||
source .azure/linux.bashrc | ||
stack --stack-yaml $(YAML_FILE) --install-ghc build --only-dependencies | ||
displayName: Build dependencies | ||
- bash: | | ||
source .azure/linux.bashrc | ||
stack build --stack-yaml $(YAML_FILE) | ||
displayName: Build `hie-install` | ||
- bash: | | ||
source .azure/linux.bashrc | ||
stack install.hs help | ||
displayName: Run help of `instal.hs` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
jobs: | ||
- job: MacOs_installhs_Stack | ||
timeoutInMinutes: 0 | ||
pool: | ||
vmImage: macOS-10.13 | ||
strategy: | ||
matrix: | ||
shake: | ||
YAML_FILE: install/shake.yaml | ||
steps: | ||
- bash: | | ||
export STACK_ROOT="$(Build.SourcesDirectory)"/.stack-root | ||
mkdir -p ~/.local/bin | ||
curl -skL https://get.haskellstack.org/stable/osx-x86_64.tar.gz | \ | ||
tar xz --strip-components=1 --include '*/stack' -C ~/.local/bin; | ||
displayName: Install stack | ||
- bash: | | ||
source .azure/macos.bashrc | ||
stack setup --stack-yaml $(YAML_FILE) | ||
displayName: Install GHC | ||
- bash: | | ||
source .azure/macos.bashrc | ||
stack --stack-yaml $(YAML_FILE) --install-ghc build --only-dependencies | ||
displayName: Build dependencies | ||
- bash: | | ||
source .azure/macos.bashrc | ||
stack build --stack-yaml $(YAML_FILE) | ||
displayName: Build `hie-install` | ||
- bash: | | ||
source .azure/macos.bashrc | ||
stack install.hs help | ||
displayName: Run help of `instal.hs` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
jobs: | ||
- job: Windows_installhs_Cabal | ||
timeoutInMinutes: 0 | ||
pool: | ||
vmImage: windows-2019 | ||
variables: | ||
YAML_FILE: install/shake.yaml | ||
PROJECT_FILE: install/shake.project | ||
steps: | ||
- bash: | | ||
curl -sSkL http://www.stackage.org/stack/windows-x86_64 -o /usr/bin/stack.zip | ||
unzip -o /usr/bin/stack.zip -d /usr/bin/ | ||
displayName: Install stack | ||
- bash: | | ||
source .azure/windows.bashrc | ||
stack setup --stack-yaml $(YAML_FILE) | ||
displayName: Install GHC | ||
- bash: | | ||
source .azure/windows.bashrc | ||
stack install cabal-install --stack-yaml $(YAML_FILE) | ||
displayName: Install `cabal-install` | ||
- bash: | | ||
source .azure/windows.bashrc | ||
cabal update | ||
displayName: update cabal | ||
# - bash: | | ||
# source .azure/windows.bashrc | ||
# stack --stack-yaml $(YAML_FILE) build --only-dependencies | ||
# displayName: Build dependencies | ||
- bash: | | ||
source .azure/windows.bashrc | ||
cabal v2-build hie-install -w $(stack path --stack-yaml $(YAML_FILE) --compiler-exe) --project-file $(PROJECT_FILE) | ||
displayName: Build `hie-install` | ||
- bash: | | ||
source .azure/windows.bashrc | ||
cabal v2-run install.hs -w $(stack path --stack-yaml $(YAML_FILE) --compiler-exe) --project-file $(PROJECT_FILE) help | ||
displayName: Run help of `install.hs` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
jobs: | ||
- job: Windows_installhs_Stack | ||
timeoutInMinutes: 0 | ||
pool: | ||
vmImage: windows-2019 | ||
strategy: | ||
matrix: | ||
shake: | ||
YAML_FILE: install/shake.yaml | ||
steps: | ||
- bash: | | ||
curl -sSkL http://www.stackage.org/stack/windows-x86_64 -o /usr/bin/stack.zip | ||
unzip -o /usr/bin/stack.zip -d /usr/bin/ | ||
displayName: Install stack | ||
- bash: | | ||
source .azure/windows.bashrc | ||
stack setup --stack-yaml $(YAML_FILE) | ||
displayName: Install GHC | ||
- bash: | | ||
source .azure/windows.bashrc | ||
stack --stack-yaml $(YAML_FILE) --install-ghc build --only-dependencies | ||
displayName: Build dependencies | ||
- bash: | | ||
source .azure/windows.bashrc | ||
stack build --stack-yaml $(YAML_FILE) | ||
displayName: Build `hie-install` | ||
- bash: | | ||
source .azure/windows.bashrc | ||
stack install.hs help | ||
displayName: Run help of `instal.hs` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,3 +73,4 @@ _build/ | |
|
||
# stack 2.1 stack.yaml lock files | ||
stack*.yaml.lock | ||
shake.yaml.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.