forked from bellard/quickjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bellard#16 from openwebf/feat/ci
feat: update test262.conf and addci yml
- Loading branch information
Showing
2 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: linux-x64 | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: sudo apt install -y libcppunit-dev cmake | ||
- run: mkdir build | ||
- run: cd build && cmake .. | ||
- run: make -j4 | ||
- run: cd .. | ||
- run: git clone https://github.com/tc39/test262.git test262 | ||
- run: cd test262 | ||
- run: patch -p1 < ../tests/test262.patch | ||
- run: cd .. | ||
- run: touch test262_errors.txt | ||
- run: ./bin/run-test262 -m -c test262.conf -a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters