Skip to content

Commit c630a67

Browse files
Setup ruby to build ci matrix
but don't require "bundle install"
1 parent 09b4087 commit c630a67

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ jobs:
7575
entries: ${{ steps.set-matrix.outputs.entries }}
7676
steps:
7777
- uses: actions/checkout@v4
78+
- uses: ruby/setup-ruby@v1
79+
with:
80+
ruby-version: "3.2"
81+
bundler-cache: false
7882
- run: rake ci:pin_build_manifest
7983
env:
8084
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

tasks/packaging.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tools = {
77

88
def npm_pkg_build_command(pkg)
99
[
10-
"bundle", "exec", "rbwasm",
10+
"bundle", "exec", "exe/rbwasm",
1111
"build",
1212
"--ruby-version", pkg[:ruby_version],
1313
"--target", pkg[:target],

0 commit comments

Comments
 (0)