summary refs log tree commit diff stats
path: root/compiler/nim.nim
Commit message (Expand)AuthorAgeFilesLines
* Use gProjectIsStdin insteaddef2015-05-171-0/+1
* Clean up stdin file reading of compiler.def2015-05-161-3/+5
* When compiling from stdin write binary to stdinfiledef2015-02-281-0/+2
* nimrod -> nim in some filenamesdef2015-02-141-2/+2
* Merge pull request #2017 from reactormonk/nodejs-binaryAndreas Rumpf2015-01-281-2/+3
|\
| * added suggested fixesSimon Hafner2015-01-271-1/+1
| * find the nodejs binarySimon Hafner2015-01-271-2/+3
* | nimsuggest: first versionAraq2015-01-271-1/+1
|/
* fixes #903, fixes #1513Araq2014-09-031-3/+3
* koch now uses nim.exeAraq2014-08-291-0/+92
0b ^
3d25dff ^
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






                                       
                                                    







                             



                 
           

                                                                                      
                                                                                  

              
                                  
                                
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:
      - tags
      - triggers
      - schedules
    script:
      - cd $GOPATH/src/$REPO_NAME/cmd/cetus-nasa
      - GOOS=openbsd GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-nasa-openbsd-amd64
      - GOOS=linux GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-nasa-linux-amd64
    artifacts:
      paths:
        - cetus-nasa-openbsd-amd64
        - cetus-nasa-linux-amd64