diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-01-06T10·34+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-01-06T10·35+0100 |
commit | fe23e28f12f5eedf387c974c73813f6de8320b21 (patch) | |
tree | a1865b38757c9972f4b471b9ea99c7fe3af9b3fc /release.nix | |
parent | 4252b5a645138e84fa8916dfc3f8d6af8e74fc28 (diff) |
Disable FreeBSD tests for now
The FreeBSD machines in the build farm are currently unreachable.
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/release.nix b/release.nix index 11ed7a1c30cc..b559024375cc 100644 --- a/release.nix +++ b/release.nix @@ -6,7 +6,7 @@ let pkgs = import <nixpkgs> {}; - systems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "x86_64-freebsd" "i686-freebsd" ]; + systems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" /* "x86_64-freebsd" "i686-freebsd" */ ]; jobs = rec { @@ -212,15 +212,15 @@ let meta.description = "Release-critical builds"; constituents = [ tarball - build.i686-freebsd + #build.i686-freebsd build.i686-linux build.x86_64-darwin - build.x86_64-freebsd + #build.x86_64-freebsd build.x86_64-linux - binaryTarball.i686-freebsd + #binaryTarball.i686-freebsd binaryTarball.i686-linux binaryTarball.x86_64-darwin - binaryTarball.x86_64-freebsd + #binaryTarball.x86_64-freebsd binaryTarball.x86_64-linux deb_debian7i386 deb_debian7x86_64 |