summary refs log tree commit diff stats
path: root/tests/dll
Commit message (Expand)AuthorAgeFilesLines
* fix #16265; fix #13999 (HCR on OSX); cgen now does not line wrap string litte...Timothee Cour2020-12-141-2/+15
* Ref #14094 - disable hot code reloading tests on NetBSD (#15458)Euan2020-10-022-0/+2
* CI openbsd: 3x batching via NIM_TESTAMENT_BATCH ; overall CI finishes in 21m ...Timothee Cour2020-06-301-0/+1
* HCR: properly handling complex const objects in the codegen - fixes #13915 (#...Viktor Kirilov2020-04-253-0/+4
* Ref #14075 - enable two tests which seem to now be passing locally on FreeBSD...Euan2020-04-221-1/+0
* #12103 - CI for OpenBSD (#12105)Euan2020-04-212-1/+3
* Revert "remove dead code test_nimhcr_integration.(bat,sh) (#13388)" (#13396)Andreas Rumpf2020-02-122-0/+27
* remove dead code test_nimhcr_integration.(bat,sh) (#13388)Timothee Cour2020-02-122-27/+0
* Unexport even more symbols (#13214)alaviss2020-01-231-6/+30
* compiler/ccgtypes: hide exportc proc unless it has dynlib (#13199)alaviss2020-01-201-0/+19
* #12103 - CI for FreeBSD (#12179)Euan2019-11-291-0/+1
* disable flaky test on OSXnarimiran2019-10-231-1/+2
* HCR: tests for the fixes for #11608 and #11996 (#12047)Viktor Kirilov2019-08-262-0/+16
* make tests green againAraq2019-05-271-5/+3
* improvements on the hot code reloading support (#10892)Viktor Kirilov2019-03-231-1/+1
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-2620-0/+484
* activated more tests, allow input in test specArne Döring2018-11-231-7/+1
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-042-8/+8
* Rename *.nimrod.cfg to *.nim.cfgdef2015-02-032-0/+0
* further adaptationsAraq2014-08-292-2/+2
* Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-162-2/+2
* DLLs should work again; fixes #169Araq2012-07-243-0/+10
* tester checks exitcode; osproc additions; DLL fixes; taint mode fixesAraq2011-11-073-5/+68
* Added ftpclient module. Fixed docs in sockets module. Added dll tests to test...dom962011-11-041-0/+5
<aman@tmm1.net> 2015-10-02 19:02:01 -0700 committer Aman Gupta <aman@tmm1.net> 2015-10-02 19:02:01 -0700 fail CI when tests fail' href='/ahoang/Nim/commit/.travis.yml?h=devel&id=a01fd5e93f58a2bf9dea4f577218b8ff7d874bbf'>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