mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user