Skip to content

Commit 6b21969

Browse files
authored
fix(Action): install missing libaries (#9)
1 parent f475f7a commit 6b21969

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

.github/workflows/ruby.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
ruby-version: ['3.2', '3.1', '3.0', '2.7', '2.4']
17+
ruby-version: ['3.2', '3.1', '3.0']
1818

1919
steps:
2020
- uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
bundler-cache: true
2626
- name: Install dependencies
2727
run: |
28-
sudo apt-get install pkg-config libxml2-dev libxslt-dev
28+
sudo apt-get install gcc pkg-config libxml2-dev libxslt-dev zlib1g-dev
2929
gem install bundler
3030
bundle install --jobs 4 --retry 3
3131
- name: Run tests

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ gem "delaunator", "~> 0.1.0"
1212

1313
gem "gradient"
1414

15-
gem "scanf", "~> 1.0"
15+
gem "scanf", "~> 1.0"

Gemfile.lock

+18-18
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@ GEM
1010
specs:
1111
color (1.8)
1212
delaunator (0.1.1)
13-
diff-lcs (1.3)
13+
diff-lcs (1.5.1)
1414
gradient (0.5.1)
1515
color (~> 1.8)
1616
nokogiri (~> 1.6)
17-
mini_portile2 (2.4.0)
18-
nokogiri (1.10.10)
19-
mini_portile2 (~> 2.4.0)
20-
rake (13.0.1)
21-
rspec (3.9.0)
22-
rspec-core (~> 3.9.0)
23-
rspec-expectations (~> 3.9.0)
24-
rspec-mocks (~> 3.9.0)
25-
rspec-core (3.9.1)
26-
rspec-support (~> 3.9.1)
27-
rspec-expectations (3.9.1)
17+
nokogiri (1.16.0-x86_64-linux)
18+
racc (~> 1.4)
19+
racc (1.7.3)
20+
rake (13.1.0)
21+
rspec (3.12.0)
22+
rspec-core (~> 3.12.0)
23+
rspec-expectations (~> 3.12.0)
24+
rspec-mocks (~> 3.12.0)
25+
rspec-core (3.12.2)
26+
rspec-support (~> 3.12.0)
27+
rspec-expectations (3.12.3)
2828
diff-lcs (>= 1.2.0, < 2.0)
29-
rspec-support (~> 3.9.0)
30-
rspec-mocks (3.9.1)
29+
rspec-support (~> 3.12.0)
30+
rspec-mocks (3.12.6)
3131
diff-lcs (>= 1.2.0, < 2.0)
32-
rspec-support (~> 3.9.0)
33-
rspec-support (3.9.2)
32+
rspec-support (~> 3.12.0)
33+
rspec-support (3.12.1)
3434
scanf (1.0.0)
3535

3636
PLATFORMS
37-
ruby
37+
x86_64-linux
3838

3939
DEPENDENCIES
4040
bundler (~> 2.0)
@@ -46,4 +46,4 @@ DEPENDENCIES
4646
triangle_pattern!
4747

4848
BUNDLED WITH
49-
2.1.2
49+
2.4.10

triangle_pattern.gemspec

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Gem::Specification.new do |spec|
3131
spec.required_ruby_version = ">= 2.4.0"
3232

3333
spec.add_development_dependency 'bundler', '~> 2.0'
34-
3534
spec.add_dependency 'delaunator', '~> 0.1.1'
3635
spec.add_dependency 'gradient', '~> 0.5.1'
3736
end

0 commit comments

Comments
 (0)