-
Notifications
You must be signed in to change notification settings - Fork 227
/
build.ps1
38 lines (32 loc) · 999 Bytes
/
build.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Build script for PowerShell
$ErrorActionPreference = "Stop"
$cmd = $args[0]
Write-Host "cmd: $cmd"
function quick() {
try {
go build
if (-not $?) {
Write-Host "build failed!" # WTH, error handling in powershell sucks
exit
}
} catch {
# This try/catch thing doesn't work, the above if statement does work though
Write-Host "build failed 2!"
exit
}
./functions
}
function build () {
docker run --rm -v ${pwd}:/go/src/github.com/iron-io/functions -w /go/src/github.com/iron-io/functions iron/go:dev go build -o functions-alpine
docker build -t iron/functions:latest .
}
function run () {
docker run --rm --name functions -it -v /var/run/docker.sock:/var/run/docker.sock -e LOG_LEVEL=debug -e "DB_URL=bolt:///app/data/bolt.db" -v $PWD/data:/app/data -p 8080:8080 iron/functions
}
switch ($cmd)
{
"quick" {quick}
"build" { build }
"run" {run}
default {"Invalid command: $cmd"}
}