Skip to content

Commit

Permalink
Add list of ingored SDKs
Browse files Browse the repository at this point in the history
Ignore 1.38.7 as it's malformed due emscripten-core/emsdk#156
  • Loading branch information
trzecieu committed Jul 6, 2018
1 parent 10e03be commit 42227db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ SDK_MIN = "1.37.16"
QUEUE_FILE = "queue.txt"
LOG_COMPILATION = "build.log"

SDK_IGNORED = [
"1.38.7", # malformed due an incompatibility with EMSDK release
]

TEST_CASES = {
DOCKER_REPO_SLIM : [
"emcc test.cpp -o test.js -s WASM=0 && node test.js",
Expand Down Expand Up @@ -189,7 +193,7 @@ class EMHelper:
except:
pass
sorted(all_tags, cmp=version_compare)
return all_tags
return list(filter(lambda x: x not in SDK_IGNORED, all_tags))


class EmscriptenTester:
Expand Down

0 comments on commit 42227db

Please sign in to comment.