Skip to content

Commit 8e80f6d

Browse files
committed
Add arm64 for ubuntu 22.04 and 24.04
1 parent a29aa7d commit 8e80f6d

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ bin/wkhtmltopdf_ubuntu_20.04_amd64
2828
bin/wkhtmltopdf_ubuntu_20.04_arm64
2929
bin/wkhtmltopdf_ubuntu_21.10_amd64
3030
bin/wkhtmltopdf_ubuntu_22.04_amd64
31+
bin/wkhtmltopdf_ubuntu_22.04_arm64
15.5 MB
Binary file not shown.

docker-compose-arm.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,17 @@ services:
2828
dockerfile: .docker/Dockerfile-debian_12_arm
2929
volumes:
3030
- .:/root/wkhtmltopdf_binary_gem
31+
32+
ubuntu_22.04:
33+
build:
34+
context: .
35+
dockerfile: .docker/Dockerfile-ubuntu_22.04
36+
volumes:
37+
- .:/root/wkhtmltopdf_binary_gem
38+
39+
ubuntu_24.04:
40+
build:
41+
context: .
42+
dockerfile: .docker/Dockerfile-ubuntu_24.04
43+
volumes:
44+
- .:/root/wkhtmltopdf_binary_gem

test/test_with_docker.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ def test_with_ubuntu_20
5454
end
5555

5656
def test_with_ubuntu_22
57-
test_on_x86 with: 'ubuntu_22.04'
57+
test_on_x86_and_arm with: 'ubuntu_22.04'
5858
end
5959

6060
def test_with_ubuntu_24
61-
test_on_x86 with: 'ubuntu_24.04'
62-
end
61+
test_on_x86_and_arm with: 'ubuntu_24.04'
62+
end
6363

6464
def test_with_archlinux
6565
test_on_x86 with: 'archlinux'

0 commit comments

Comments
 (0)