Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mh-cbon committed Jun 25, 2016
1 parent aa70309 commit 6a79acc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions appveyor-recipe.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,9 @@ build_script:
- set GOARCH=386
- go build -o go-msi.exe main.go # Change this
- go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x86.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x86 # Change this
- echo %GOARCH%
- set GOARCH=amd64
- go build -o go-msi.exe main.go # Change this
- go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x64.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x64 # Change this
- echo %GOARCH%

# to disable automatic tests
test: off
Expand Down
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ install:
# to run your custom scripts instead of automatic MSBuild
build_script:
- glide install
- GOARCh=386 go build -o go-msi.exe main.go
- set GOARCH=386
- go build -o go-msi.exe main.go
- .\go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x86.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x86
- GOARCh=amd64 go build -o go-msi.exe main.go
- echo %GOARCH%
- set GOARCH=amd64
- go build -o go-msi.exe main.go
- .\go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x64.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x64
- echo %GOARCH%

# to disable automatic tests
test: off
Expand Down

0 comments on commit 6a79acc

Please sign in to comment.