Skip to content

Commit

Permalink
Build node 14.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed Oct 26, 2020
1 parent 52d660d commit b83d5d1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ jobs:
bundle exec ruby -e 'puts Libv8Node::NODE_VERSION' | tee node_version
- name: Download Node.js
run: |
./download-node 12.18.4
./download-node 14.14.0
- name: Extract Node.js
run: |
./extract-node 12.18.4
./extract-node 14.14.0
- name: Build V8
run: |
./build-libv8 12.18.4
./build-libv8 14.14.0
- name: Build Monolith
run: |
./build-monolith 12.18.4
./build-monolith 14.14.0
- name: Inject V8
run: |
./inject-libv8 12.18.4
./inject-libv8 14.14.0
- name: Build gem
run: |
bundle exec rake binary
Expand All @@ -53,19 +53,19 @@ jobs:
run: bundle install
- name: Download Node.js
run: |
./download-node 12.18.4
./download-node 14.14.0
- name: Extract Node.js
run: |
./extract-node 12.18.4
./extract-node 14.14.0
- name: Build V8
run: |
./build-libv8 12.18.4
./build-libv8 14.14.0
- name: Build Monolith
run: |
./build-monolith 12.18.4
./build-monolith 14.14.0
- name: Inject V8
run: |
./inject-libv8 12.18.4
./inject-libv8 14.14.0
- name: Build gem
run: |
bundle exec rake binary
Expand All @@ -92,19 +92,19 @@ jobs:
run: bundle install
- name: Download Node.js
run: |
./download-node 12.18.4
./download-node 14.14.0
- name: Extract Node.js
run: |
./extract-node 12.18.4
./extract-node 14.14.0
- name: Build V8
run: |
./build-libv8 12.18.4
./build-libv8 14.14.0
- name: Build Monolith
run: |
./build-monolith 12.18.4
./build-monolith 14.14.0
- name: Inject V8
run: |
./inject-libv8 12.18.4
./inject-libv8 14.14.0
- name: Build gem
run: |
bundle exec rake binary
Expand Down
6 changes: 3 additions & 3 deletions lib/libv8/node/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Libv8; end

module Libv8::Node
VERSION = "12.18.4.0.beta1"
NODE_VERSION = "12.18.4"
LIBV8_VERSION = "7.8.279.23" # v8/include/v8-version.h
VERSION = "14.14.0.0.beta1"
NODE_VERSION = "14.14.0"
LIBV8_VERSION = "8.4.371.19" # v8/include/v8-version.h
end

0 comments on commit b83d5d1

Please sign in to comment.