-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add dependency on choice-0.2.0 * Enable parallel builds
- Loading branch information
1 parent
d9da523
commit f3454ee
Showing
5 changed files
with
11 additions
and
7 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 |
---|---|---|
|
@@ -6,14 +6,16 @@ branches: | |
only: | ||
- leapyear-patchset | ||
env: | ||
global: | ||
- CASHER_TIME_OUT=3600 | ||
- [email protected] | ||
- [email protected] # MacOS 10.11 (El Capitan) | ||
- [email protected] # MacOS 10.12 (Sierra) | ||
global: | ||
- CASHER_TIME_OUT=3600 | ||
before_install: | ||
- openssl aes-256-cbc -K $encrypted_02288c648d1c_key -iv $encrypted_02288c648d1c_iv -in leapyear-builder-us-west-1.pem.enc -out leapyear-builder-us-west-1.pem -d | ||
- chmod 0600 leapyear-builder-us-west-1.pem | ||
- echo "Building on $BUILD_MACHINE" | ||
script: | ||
- "./remote_build.sh leapyear-builder-us-west-1.pem [email protected]" # MacOS 10.12 (Sierra) | ||
- "./remote_build.sh leapyear-builder-us-west-1.pem [email protected]" | ||
- "./remote_build.sh leapyear-builder-us-west-1.pem [email protected]" # MacOS 10.11 (El Capitan) | ||
- ./remote_build.sh leapyear-builder-us-west-1.pem $BUILD_MACHINE | ||
notifications: | ||
slack: leapyear:o4w7lKexDuDCzmPSayJuQg9m |
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ packages: | |
|
||
extra-deps: | ||
- thread-local-storage-0.1.0.4 | ||
- choice-0.2.0 | ||
|
||
nix: | ||
enable: true | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
let | ||
pkgs = import ./nixpkgs.nix; | ||
|
||
hsPkgs = | ||
pkgs.haskell // { | ||
packages = pkgs.haskell.packages // { | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ packages: | |
|
||
extra-deps: | ||
- thread-local-storage-0.1.0.4 | ||
- choice-0.2.0 | ||
|
||
nix: | ||
enable: true | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
set -x | ||
set -x | ||
|
||
KEYFILE="$1" | ||
USER_AT_IP="$2" | ||
|