Skip to content

Commit bb874b1

Browse files
committed
Build node 10.22.1
1 parent 52d660d commit bb874b1

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ jobs:
1616
bundle exec ruby -e 'puts Libv8Node::NODE_VERSION' | tee node_version
1717
- name: Download Node.js
1818
run: |
19-
./download-node 12.18.4
19+
./download-node 10.22.1
2020
- name: Extract Node.js
2121
run: |
22-
./extract-node 12.18.4
22+
./extract-node 10.22.1
2323
- name: Build V8
2424
run: |
25-
./build-libv8 12.18.4
25+
./build-libv8 10.22.1
2626
- name: Build Monolith
2727
run: |
28-
./build-monolith 12.18.4
28+
./build-monolith 10.22.1
2929
- name: Inject V8
3030
run: |
31-
./inject-libv8 12.18.4
31+
./inject-libv8 10.22.1
3232
- name: Build gem
3333
run: |
3434
bundle exec rake binary
@@ -53,19 +53,19 @@ jobs:
5353
run: bundle install
5454
- name: Download Node.js
5555
run: |
56-
./download-node 12.18.4
56+
./download-node 10.22.1
5757
- name: Extract Node.js
5858
run: |
59-
./extract-node 12.18.4
59+
./extract-node 10.22.1
6060
- name: Build V8
6161
run: |
62-
./build-libv8 12.18.4
62+
./build-libv8 10.22.1
6363
- name: Build Monolith
6464
run: |
65-
./build-monolith 12.18.4
65+
./build-monolith 10.22.1
6666
- name: Inject V8
6767
run: |
68-
./inject-libv8 12.18.4
68+
./inject-libv8 10.22.1
6969
- name: Build gem
7070
run: |
7171
bundle exec rake binary
@@ -92,19 +92,19 @@ jobs:
9292
run: bundle install
9393
- name: Download Node.js
9494
run: |
95-
./download-node 12.18.4
95+
./download-node 10.22.1
9696
- name: Extract Node.js
9797
run: |
98-
./extract-node 12.18.4
98+
./extract-node 10.22.1
9999
- name: Build V8
100100
run: |
101-
./build-libv8 12.18.4
101+
./build-libv8 10.22.1
102102
- name: Build Monolith
103103
run: |
104-
./build-monolith 12.18.4
104+
./build-monolith 10.22.1
105105
- name: Inject V8
106106
run: |
107-
./inject-libv8 12.18.4
107+
./inject-libv8 10.22.1
108108
- name: Build gem
109109
run: |
110110
bundle exec rake binary

lib/libv8/node/version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Libv8; end
22

33
module Libv8::Node
4-
VERSION = "12.18.4.0.beta1"
5-
NODE_VERSION = "12.18.4"
6-
LIBV8_VERSION = "7.8.279.23" # v8/include/v8-version.h
4+
VERSION = "10.22.1.0.beta1"
5+
NODE_VERSION = "10.22.1"
6+
LIBV8_VERSION = "6.8.275.32" # v8/include/v8-version.h
77
end

0 commit comments

Comments
 (0)