1
0
mirror of https://github.com/golang/go synced 2024-10-01 10:28:31 -06:00
go/dashboard/env/linux-x86-nacl/build-command.pl
Brad Fitzpatrick f34e673079 dashboard/env: add nacl-386 and nacl-amd64p32 builders
LGTM=adg
R=adg, dave
CC=golang-codereviews
https://golang.org/cl/136830043
2014-08-27 00:10:16 -07:00

14 lines
237 B
Perl
Executable File

#!/usr/bin/perl
use strict;
if ($ENV{GOOS} eq "nacl") {
delete $ENV{GOROOT_FINAL};
exec("./nacltest.bash", @ARGV);
die "Failed to run nacltest.bash: $!\n";
}
exec("./all.bash", @ARGV);
die "Failed to run all.bash: $!\n";