mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
travis: run 'koch testinstall' on OSX
This commit is contained in:
10
.travis.yml
10
.travis.yml
@@ -6,9 +6,9 @@ os:
|
||||
dist: trusty
|
||||
|
||||
|
||||
#matrix:
|
||||
# allow_failures:
|
||||
# - os: osx
|
||||
matrix:
|
||||
allow_failures:
|
||||
- os: osx
|
||||
|
||||
addons:
|
||||
apt:
|
||||
@@ -44,7 +44,9 @@ script:
|
||||
#- nimble install jester@#head -y
|
||||
#- nimble install niminst
|
||||
- nim c --taintMode:on -d:nimCoroutines tests/testament/tester
|
||||
- tests/testament/tester --pedantic all -d:nimCoroutines
|
||||
# Do not run the tests on OSX as OSX does 'testinstall' which *also* runs all the tests!
|
||||
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; tests/testament/tester --pedantic all -d:nimCoroutines
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; ./koch testinstall
|
||||
- nim c -o:bin/nimpretty nimpretty/nimpretty.nim
|
||||
- nim c -r nimpretty/tester.nim
|
||||
- ./koch docs
|
||||
|
||||
@@ -68,6 +68,7 @@ Files: "compiler"
|
||||
Files: "doc"
|
||||
Files: "doc/html"
|
||||
Files: "tools"
|
||||
Files: "nimpretty"
|
||||
Files: "nimsuggest"
|
||||
Files: "nimsuggest/tests/*.nim"
|
||||
Files: "web/website.ini"
|
||||
|
||||
60
koch.nim
60
koch.nim
@@ -75,33 +75,6 @@ template withDir(dir, body) =
|
||||
finally:
|
||||
setCurrentdir(old)
|
||||
|
||||
proc testUnixInstall() =
|
||||
let oldCurrentDir = getCurrentDir()
|
||||
try:
|
||||
let destDir = getTempDir()
|
||||
copyFile("build/nim-$1.tar.xz" % VersionAsString,
|
||||
destDir / "nim-$1.tar.xz" % VersionAsString)
|
||||
setCurrentDir(destDir)
|
||||
execCleanPath("tar -xJf nim-$1.tar.xz" % VersionAsString)
|
||||
setCurrentDir("nim-$1" % VersionAsString)
|
||||
execCleanPath("sh build.sh")
|
||||
# first test: try if './bin/nim --version' outputs something sane:
|
||||
let output = execProcess("./bin/nim --version").splitLines
|
||||
if output.len > 0 and output[0].contains(VersionAsString):
|
||||
echo "Version check: success"
|
||||
execCleanPath("./bin/nim c koch.nim")
|
||||
execCleanPath("./koch boot -d:release", destDir / "bin")
|
||||
# check the docs build:
|
||||
execCleanPath("./koch docs", destDir / "bin")
|
||||
# check nimble builds:
|
||||
execCleanPath("./koch tools")
|
||||
# check the tests work:
|
||||
execCleanPath("./koch tests", destDir / "bin")
|
||||
else:
|
||||
echo "Version check: failure"
|
||||
finally:
|
||||
setCurrentDir oldCurrentDir
|
||||
|
||||
proc tryExec(cmd: string): bool =
|
||||
echo(cmd)
|
||||
result = execShellCmd(cmd) == 0
|
||||
@@ -475,6 +448,36 @@ proc pushCsources() =
|
||||
finally:
|
||||
setCurrentDir(cwd)
|
||||
|
||||
proc testUnixInstall(cmdLineRest: string) =
|
||||
csource("-d:release " & cmdLineRest)
|
||||
xz(cmdLineRest)
|
||||
let oldCurrentDir = getCurrentDir()
|
||||
try:
|
||||
let destDir = getTempDir()
|
||||
copyFile("build/nim-$1.tar.xz" % VersionAsString,
|
||||
destDir / "nim-$1.tar.xz" % VersionAsString)
|
||||
setCurrentDir(destDir)
|
||||
execCleanPath("tar -xJf nim-$1.tar.xz" % VersionAsString)
|
||||
setCurrentDir("nim-$1" % VersionAsString)
|
||||
execCleanPath("sh build.sh")
|
||||
# first test: try if './bin/nim --version' outputs something sane:
|
||||
let output = execProcess("./bin/nim --version").splitLines
|
||||
if output.len > 0 and output[0].contains(VersionAsString):
|
||||
echo "Version check: success"
|
||||
execCleanPath("./bin/nim c koch.nim")
|
||||
execCleanPath("./koch boot -d:release", destDir / "bin")
|
||||
# check the docs build:
|
||||
execCleanPath("./koch docs", destDir / "bin")
|
||||
# check nimble builds:
|
||||
execCleanPath("./koch testtools")
|
||||
# check the tests work:
|
||||
execCleanPath("./koch tests", destDir / "bin")
|
||||
#execCleanPath("./koch tests cat newconfig", destDir / "bin")
|
||||
else:
|
||||
echo "Version check: failure"
|
||||
finally:
|
||||
setCurrentDir oldCurrentDir
|
||||
|
||||
proc valgrind(cmd: string) =
|
||||
# somewhat hacky: '=' sign means "pass to valgrind" else "pass to Nim"
|
||||
let args = parseCmdLine(cmd)
|
||||
@@ -522,7 +525,7 @@ when isMainModule:
|
||||
of "geninstall": geninstall(op.cmdLineRest)
|
||||
of "distrohelper": geninstall()
|
||||
of "install": install(op.cmdLineRest)
|
||||
of "testinstall": testUnixInstall()
|
||||
of "testinstall": testUnixInstall(op.cmdLineRest)
|
||||
of "test", "tests": tests(op.cmdLineRest)
|
||||
of "temp": temp(op.cmdLineRest)
|
||||
of "xtemp": xtemp(op.cmdLineRest)
|
||||
@@ -531,6 +534,7 @@ when isMainModule:
|
||||
of "nimble": buildNimble(existsDir(".git"))
|
||||
of "nimsuggest": bundleNimsuggest(buildExe=true)
|
||||
of "tools": buildTools(existsDir(".git"))
|
||||
of "testtools": buildTools(true)
|
||||
of "pushcsource", "pushcsources": pushCsources()
|
||||
of "valgrind": valgrind(op.cmdLineRest)
|
||||
else: showHelp()
|
||||
|
||||
@@ -37,7 +37,9 @@ assert wd != getCurrentDir()
|
||||
cd(wd)
|
||||
assert wd == getCurrentDir()
|
||||
|
||||
assert findExe("nim") != ""
|
||||
when false:
|
||||
# this doesn't work in a 'koch testintall' environment
|
||||
assert findExe("nim") != ""
|
||||
|
||||
# general tests
|
||||
mode = ScriptMode.Verbose
|
||||
@@ -69,12 +71,16 @@ assert dirExists("tempXYZ") == false
|
||||
mkDir("tempXYZ")
|
||||
assert dirExists("tempXYZ") == true
|
||||
assert fileExists("tempXYZ/koch.nim") == false
|
||||
cpFile("koch.nim", "tempXYZ/koch.nim")
|
||||
assert fileExists("tempXYZ/koch.nim") == true
|
||||
cpDir("nimsuggest", "tempXYZ/.")
|
||||
assert dirExists("tempXYZ/tests") == true
|
||||
assert fileExists("tempXYZ/nimsuggest.nim") == true
|
||||
rmFile("tempXYZ/koch.nim")
|
||||
assert fileExists("tempXYZ/koch.nim") == false
|
||||
|
||||
when false:
|
||||
# this doesn't work in a 'koch testintall' environment
|
||||
cpFile("koch.nim", "tempXYZ/koch.nim")
|
||||
assert fileExists("tempXYZ/koch.nim") == true
|
||||
cpDir("nimsuggest", "tempXYZ/.")
|
||||
assert dirExists("tempXYZ/tests") == true
|
||||
assert fileExists("tempXYZ/nimsuggest.nim") == true
|
||||
rmFile("tempXYZ/koch.nim")
|
||||
assert fileExists("tempXYZ/koch.nim") == false
|
||||
|
||||
rmDir("tempXYZ")
|
||||
assert dirExists("tempXYZ") == false
|
||||
|
||||
Reference in New Issue
Block a user