summary refs log tree commit diff stats
path: root/tools/winrelease.nim
Commit message (Expand)AuthorAgeFilesLines
* moved winrelease to its own tool to fix #6147Araq2017-09-031-0/+9
m/blame/.travis.yml?h=devel&id=29dac5ed60807c80d64987a0e0651e02917965f3'>^
505571f31 ^
85f2ab1c4 ^
e241c9a33 ^
505571f31 ^


1d00f7f9d ^



517312467 ^

1d00f7f9d ^
517312467 ^


e5aefbd1d ^
911551aae ^
223e65e52 ^

1d00f7f9d ^
8f6a275f4 ^
fbe7bf3c8 ^
1d00f7f9d ^

c60916a2a ^
a01fd5e93 ^
aa0a9dd78 ^
a01fd5e93 ^
aa0a9dd78 ^
7d07897a9 ^





308710c1e ^



7d07897a9 ^
2e5c75973 ^
308710c1e ^







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
           
           
 
            
 


               



                                  

       
                                                       


                          
               
                 

               
 
              
                                                                

                                          
 
       
                                       
              
                                     





                                      



                                                                                                     
 
                                                                







                                                             
sudo: false
language: c

dist: xenial

matrix:
  include:
    - os: linux
      env:
        - NIM_COMPILE_TO_CPP=false
        - CPU=amd64

addons:
  apt:
    # update the list above if more deps are introduced
    packages:
    - libcurl4-openssl-dev
    - libsdl1.2-dev
    - libgc-dev
    - libsfml-dev
    - libc6-dbg
    - valgrind

before_script:
  - git clone --depth 1 https://github.com/nim-lang/csources.git
  - export PATH="$PWD/bin${PATH:+:$PATH}"
  - make -C csources -j 2 LD=$CC ucpu=$CPU

script:
  - echo "travis_fold:start:nim_c_koch"
  - nim c koch
  - echo "travis_fold:end:nim_c_koch"
  - echo "travis_fold:start:koch_boot"
  - ./koch boot
  - echo "travis_fold:end:koch_boot"
  - echo "travis_fold:start:koch_doc"
  - ./koch doc
  - echo "travis_fold:end:koch_doc"

before_deploy:
  # Make https://nim-lang.github.io/Nim work the same as https://nim-lang.github.io/Nim/overview.html
  - cp -f ./doc/html/overview.html ./doc/html/index.html

deploy:                         # https://nim-lang.github.io/Nim
  provider: pages
  # local-dir *has* to be a relative path from the repo root.
  local-dir: "doc/html"
  skip-cleanup: true
  github-token: "$GITHUB_OAUTH_TOKEN"
  keep-history: false
  on:
    branch: devel