Skip to content

Commit

Permalink
Update 2
Browse files Browse the repository at this point in the history
Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
  • Loading branch information
clover2123 committed Nov 19, 2024
1 parent 369c5dc commit da0c57b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ jobs:
needs: [build-mac64]
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
Expand All @@ -194,6 +197,34 @@ jobs:
otool -L escargot
echo "print('hello world');" > test.js
./escargot test.js
- name: test benchmark
run: |
$RUNNER --engine="$GITHUB_WORKSPACE/artifacts/escargot" new-es
check-release2:
needs: [build-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
pattern: build-artifact-linux
merge-multiple: true
- name: test
run: |
cd artifacts
ls
unzip escargot-linux-x64.zip
ldd escargot
echo "print('hello world');" > test.js
./escargot test.js
- name: test benchmark
run: |
$RUNNER --engine="$GITHUB_WORKSPACE/artifacts/escargot" new-es
update-release:
needs: [build-mac64, build-mac64arm, build-windows, build-linux]
Expand Down

0 comments on commit da0c57b

Please sign in to comment.