diff --git a/.gitignore b/.gitignore index 5f53336..7d03bc0 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/bin/wkhtmltopdf_ubuntu_22.04_arm64.gz b/bin/wkhtmltopdf_ubuntu_22.04_arm64.gz new file mode 100644 index 0000000..c5e5156 Binary files /dev/null and b/bin/wkhtmltopdf_ubuntu_22.04_arm64.gz differ diff --git a/docker-compose-arm.yml b/docker-compose-arm.yml index 2f854b4..cba273b 100644 --- a/docker-compose-arm.yml +++ b/docker-compose-arm.yml @@ -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 diff --git a/test/test_with_docker.rb b/test/test_with_docker.rb index d15de6c..f72af65 100644 --- a/test/test_with_docker.rb +++ b/test/test_with_docker.rb @@ -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'