summary refs log tree commit diff stats
path: root/all_tests.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-14 02:02:30 +0200
committerhut <hut@lavabit.com>2010-04-14 02:02:30 +0200
commiteba109b0ed0bf5fd6a39153d67c6150e56d988fb (patch)
treed1adf11b9ebf3be7ac68107600fc9d93af2275a6 /all_tests.py
parent19c1fa4f622ffd1597943f0005ba58a30b170bb4 (diff)
parentab5d63be742a6d6ca10443c12d561b0a1c861474 (diff)
downloadranger-eba109b0ed0bf5fd6a39153d67c6150e56d988fb.tar.gz
Merge branch 'master' into devel
Conflicts:
	ranger/core/actions.py
Diffstat (limited to 'all_tests.py')
0 files changed, 0 insertions, 0 deletions
/build/ci/gitlab-ci.yml?h=v0.6.5&id=183fb1d77eb2a949880538615d335d8c4d3a6518'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24






                                       
                                                    








                             


                                                                                 
              
            

                             
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
    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