Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ jobs:
- name: Set metadata
id: set-metadata
run: |
docker exec -w "${PWD}" ${{ steps.container.outputs.id }} ruby -e 'puts Gem.platforms.last.to_s' | tee gem_platform
docker exec -w "${PWD}" ${{ steps.container.outputs.id }} ruby -e 'puts Gem::Platform.local.tap { |p| RUBY_PLATFORM =~ /musl/ && p.version.nil? and p.instance_eval { @version = "musl" } }.to_s' | tee gem_platform
echo "::set-output name=GEM_PLATFORM::$(cat gem_platform)"
- name: Download a single artifact
uses: actions/download-artifact@v2
Expand All @@ -395,7 +395,7 @@ jobs:
run: |
git clone https://github.com/rubyjs/mini_racer.git test/mini_racer --depth 1
cd test/mini_racer
git fetch origin refs/pull/210/head
git fetch origin refs/pull/231/head
git checkout FETCH_HEAD
git reset --hard
git clean -f -d -x
Expand Down
2 changes: 1 addition & 1 deletion ext/libv8-node/paths.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def object_paths
end

def platform
Gem::Platform.local.to_s.gsub(/-darwin-?\d+/, '-darwin')
Gem::Platform.local.tap { |p| RUBY_PLATFORM =~ /musl/ && p.version.nil? and p.instance_eval { @version = "musl" } }.to_s.gsub(/-darwin-?\d+/, '-darwin')
end

def config
Expand Down
2 changes: 1 addition & 1 deletion libv8-node.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.authors = ['']
s.email = ['']
s.homepage = 'https://github.com/sqreen/ruby-libv8-node'
s.homepage = 'https://github.com/rubyjs/libv8-node'
s.summary = "Node.JS's V8 JavaScript engine"
s.description = "Node.JS's V8 JavaScript engine for multiplatform goodness"
s.license = 'MIT'
Expand Down