migration
All checks were successful
Array Queue Test / test (push) Successful in 29s
Clojure Example Test / test (push) Successful in 9s
Clojure Linear Test / test (push) Successful in 13s
Exception Test / test (push) Successful in 1m30s
Generic Test / test (push) Successful in 41s
JavaScript Example Test / test (push) Successful in 10s
JavaScript Expressions Test / test (push) Successful in 42s
JavaScript Objective Expressions Test / test (push) Successful in 2m43s
JavaScript Prefix Test / test (push) Successful in 2m45s
Queues Test / test (push) Successful in 23s
Binary Search Test / test (push) Successful in 13s

This commit is contained in:
root
2026-04-13 20:12:36 +03:00
parent 46ab1753a5
commit e6e194fb68
13 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
name: JavaScript Example Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Compile
run: |
javac \
-encoding utf-8 \
-d javascript/__out \
--class-path "javascript/graal/*:common:javascript" \
javascript/jstest/example/ExampleTest.java
- name: Run JavaScript Example tests
working-directory: javascript
run: |
java -ea \
--enable-native-access=org.graalvm.truffle \
-Dsun.misc.unsafe.memory.access=allow \
--module-path=graal \
--class-path=__out \
jstest.example.ExampleTest hard base