From d2cac32ab4d5016b295d3d022d6ff634ee2f429e Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Wed, 21 Apr 2021 20:57:10 -0700 Subject: [PATCH] cleanup --- .travis.yml | 5 +++-- appveyor.yml.disabled | 1 + ci/funs.sh | 2 -- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c741d01ceeafc..a688c21e2294e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +# deprecated, out of date and unused sudo: false language: c @@ -22,8 +23,8 @@ addons: - valgrind before_script: - # PRTEMP check that `LD=$CC ucpu=$CPU` are forwarded properly - - . ci/funs.sh && LD=$CC ucpu=$CPU nimBuildCsourcesIfNeeded + - . ci/funs.sh && nimBuildCsourcesIfNeeded + # was using: make -C csources -j 2 LD=$CC ucpu=$CPU - export PATH="$PWD/bin${PATH:+:$PATH}" script: diff --git a/appveyor.yml.disabled b/appveyor.yml.disabled index ec76c30e7bac1..031fd4145b21c 100644 --- a/appveyor.yml.disabled +++ b/appveyor.yml.disabled @@ -1,3 +1,4 @@ +# deprecated, out of date and unused version: '{build}' environment: diff --git a/ci/funs.sh b/ci/funs.sh index b7008c54e6916..a0c00065f0aa3 100644 --- a/ci/funs.sh +++ b/ci/funs.sh @@ -98,6 +98,4 @@ nimBuildCsourcesIfNeeded(){ echo_run cp $nim_csources bin/nim echo_run $nim_csources -v - - # PRTEMP see build.sh: sh build.sh }