-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
42 lines (38 loc) · 730 Bytes
/
.gitlab-ci.yml
File metadata and controls
42 lines (38 loc) · 730 Bytes
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
39
40
41
42
image: golang:latest
test:
dependencies: []
script:
- go test -v ./...
build:win64:
stage: build
variables:
GOOS: windows
GOARCH: amd64
script:
- go build -o rpgmaker-patch-translator.exe
artifacts:
name: "$CI_BUILD_NAME"
paths:
- rpgmaker-patch-translator.exe
build:linux64:
stage: build
variables:
GOOS: linux
GOARCH: amd64
script:
- go build -o rpgmaker-patch-translator
artifacts:
name: "$CI_BUILD_NAME"
paths:
- rpgmaker-patch-translator
build:osx:
stage: build
variables:
GOOS: darwin
GOARCH: amd64
script:
- go build -o rpgmaker-patch-translator
artifacts:
name: "$CI_BUILD_NAME"
paths:
- rpgmaker-patch-translator