Skip to content

Commit c60d98a

Browse files
committed
install quickjs in actions
1 parent d034cb0 commit c60d98a

File tree

6 files changed

+573
-32
lines changed

6 files changed

+573
-32
lines changed

.github/workflows/update_benchmark.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ on:
55
# * is a special character in YAML so you have to quote this string
66
- cron: '30 6 1 * *'
77
workflow_dispatch:
8+
push:
9+
branches:
10+
- master
811

912
jobs:
1013
# Set the job key. The key is displayed as the job name
1114
# when a job name is not provided
12-
update_image:
15+
update_benchmark:
1316
# Name the Job
1417
name: update benchmark every month
1518
# Set the type of machine to run on
@@ -22,6 +25,13 @@ jobs:
2225
with:
2326
node-version: '14'
2427
- run: npm i
28+
- name: system build deps
29+
run: sudo apt-get install -y build-essential gcc-multilib
30+
- run: |
31+
git clone https://github.com/bellard/quickjs.git && \
32+
cd quickjs && \
33+
make && \
34+
sudo make install
2535
- name: run benchmark and generate readme
2636
run: make
2737
- uses: EndBug/add-and-commit@v7

0 commit comments

Comments
 (0)