about summary refs log tree commit diff stats
path: root/tutorial/task10-hint1.mu
Commit message (Expand)AuthorAgeFilesLines
* make room for a second task before fractional numbersKartik K. Agaram2021-10-261-0/+58
ild/ci/gitlab-ci.yml?h=v0.6.7&id=d7f130bafd264f109178b995df179372ab4cf229'>d7f130b ^
15af1bc ^







2f15edf ^






15af1bc ^
2f15edf ^



15af1bc ^
2f15edf ^

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






                                       
                                                    







                             






                          
           



                                                                                 
            

                             
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/
  - cd $GOPATH/src/$REPO_NAME

stages:
  - build
  - deploy

compile:
    stage: build
    # only:
    #   refs:
    #     - web
    #     - tags
    #     - master
    #     - schedules
    #     - merge_requests
    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