summary refs log tree commit diff stats
path: root/TODO
blob: 3c106aa7369b6b642d3de5f94f87e3fcae2de6f0 (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
image: golang:1.13

variables:
  REPO_NAME: framagit.org/andinus/cetus

before_script:
  - mkdir -p $GOPATH/src/$REPO_NAME
  - cp -fr $CI_PROJECT_DIR/* $GOPATH/src/$REPO_NAME/
  - deploy

compile:
    stage: build
    script:
      - cd $GOPATH/src/$REPO_NAME/cmd/cetus
      - GOOS=openbsd GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-openbsd-amd64
      - GOOS=linux GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-linux-amd64
    artifacts:
      paths:
        - cetus-openbsd-amd64
        - cetus-linux-amd64