Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 64-bit ARM support for Ubuntu 22.04 and 24.04 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ bin/wkhtmltopdf_ubuntu_20.04_amd64
bin/wkhtmltopdf_ubuntu_20.04_arm64
bin/wkhtmltopdf_ubuntu_21.10_amd64
bin/wkhtmltopdf_ubuntu_22.04_amd64
bin/wkhtmltopdf_ubuntu_22.04_arm64
Binary file added bin/wkhtmltopdf_ubuntu_22.04_arm64.gz
Binary file not shown.
14 changes: 14 additions & 0 deletions docker-compose-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,17 @@ services:
dockerfile: .docker/Dockerfile-debian_12_arm
volumes:
- .:/root/wkhtmltopdf_binary_gem

ubuntu_22.04:
build:
context: .
dockerfile: .docker/Dockerfile-ubuntu_22.04
volumes:
- .:/root/wkhtmltopdf_binary_gem

ubuntu_24.04:
build:
context: .
dockerfile: .docker/Dockerfile-ubuntu_24.04
volumes:
- .:/root/wkhtmltopdf_binary_gem
6 changes: 3 additions & 3 deletions test/test_with_docker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ def test_with_ubuntu_20
end

def test_with_ubuntu_22
test_on_x86 with: 'ubuntu_22.04'
test_on_x86_and_arm with: 'ubuntu_22.04'
end

def test_with_ubuntu_24
test_on_x86 with: 'ubuntu_24.04'
end
test_on_x86_and_arm with: 'ubuntu_24.04'
end

def test_with_archlinux
test_on_x86 with: 'archlinux'
Expand Down