File tree Expand file tree Collapse file tree 3 files changed +11
-13
lines changed
Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,21 @@ jobs:
2525 - ubuntu-22.04
2626 ruby : ${{ fromJson(needs.ruby-versions.outputs.versions) }}
2727
28+ env :
29+ BUNDLE_WITHOUT : " python"
30+
2831 steps :
2932 - uses : actions/checkout@v4
3033
34+ - run : npm install playwright@latest
35+ - run : ./node_modules/.bin/playwright install
36+
37+ - run : sudo apt install build-essential libsqlite3-dev
38+
3139 - name : Set up Ruby
3240 uses : ruby/setup-ruby@v1
3341 with :
42+ bundler-cache : true
3443 ruby-version : ${{ matrix.ruby }}
3544
3645 - uses : actions/cache@v4
3948 key : ${{ runner.os }}-${{ hashFiles('charty.gemspec') }}
4049 restore-keys : ${{ runner.os }}-
4150
42- - run : sudo apt install build-essential libsqlite3-dev
43-
44- - run : npm install playwright@latest
45- - run : ./node_modules/.bin/playwright install
46-
47- - run : bundle install --jobs 4 --retry 3 --without "nmatrix python"
48-
4951 - run : bundle exec rake
5052
51- - run : rake build
53+ - run : bundle exec rake build
5254
5355 - run : gem install --user pkg/*.gem
Original file line number Diff line number Diff line change 3131 - x64
3232
3333 env :
34- BUNDLE_WITHOUT : " nmatrix numo"
34+ BUNDLE_WITHOUT : " numo"
3535 PYTHON : python
3636
3737 steps :
Original file line number Diff line number Diff line change @@ -31,10 +31,6 @@ group :cruby do
3131 gem "enumerable-statistics"
3232end
3333
34- group :nmatrix do
35- gem "nmatrix"
36- end
37-
3834group :numo do
3935 gem "numo-narray"
4036end
You can’t perform that action at this time.
0 commit comments