CI testing (#234)

* run test in CI
* make CI run
* fix some issues with paths on Windows
* avoid using float80
* add mingw64 ci
* fix path issue in tests
* add lld for mingw64 CI
This commit is contained in:
kvk1920
2021-07-17 11:30:19 +03:00
committed by GitHub
parent ebbe226a03
commit 429fb647fb
5 changed files with 61 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/python
import os, sys, shutil, subprocess
import os, sys, shutil, subprocess, tempfile
TEST_DIR = '/tmp/c3test/'
TEST_DIR = tempfile.mkdtemp().replace('\\', '/') + '/c3test/'
class Config:
run_skipped = False