From 8772eba53e8edcaefa055a99defc2e574f783479 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 8 Aug 2018 08:58:30 -0400 Subject: [PATCH] Split out the ofborg builds in to separate jobs --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 45d6696..694c088 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,9 @@ language: nix matrix: include: - - script: - - nix-shell --run checkPhase - - nix-shell --run checkPhase --arg useNix1 true - - nix-build -A ofborg.rs + - name: checkPhase - Nix 2 + script: nix-shell --run checkPhase --arg useNix1 false + - name: checkPhase - Nix 1 + script: nix-shell --run checkPhase --arg useNix1 true + - name: nix-build + script: nix-build -A ofborg.rs