-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b06e42
commit 1d7874c
Showing
6 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Test heif-convert | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test-script: | ||
name: Test Script | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install heif-convert | ||
run: pip3 install . | ||
|
||
- name: Add executable permission to test-script | ||
working-directory: tests | ||
run: chmod +x test-script.sh | ||
|
||
- name: Run Test | ||
working-directory: tests | ||
run: ./test-script.sh | ||
|
||
test-docker-image: | ||
name: Test Docker Image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build Docker Image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: false | ||
tags: nevermendel/heif-convert | ||
|
||
- name: Add executable permission to test-docker-image | ||
working-directory: tests | ||
run: chmod +x test-docker-image.sh | ||
|
||
- name: Run Test | ||
working-directory: tests | ||
run: ./test-docker-image.sh |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
docker run -v "$(pwd)":/usr/app/out --rm nevermendel/heif-convert image.heic -f jpg -q 90 -o result | ||
docker run -v "$(pwd)":/usr/app/out --rm nevermendel/heif-convert image.heic -f png -o result | ||
|
||
status_code=0 | ||
|
||
if ! cmp -s image.jpg result.jpg; then | ||
echo "jpg image is different" | ||
status_code=1 | ||
fi | ||
|
||
if ! cmp -s image.png result.png; then | ||
echo "png image is different" | ||
status_code=1 | ||
fi | ||
|
||
exit $status_code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
heif-convert image.heic -f jpg -q 90 -o result | ||
heif-convert image.heic -f png -o result | ||
|
||
status_code=0 | ||
|
||
if ! cmp -s image.jpg result.jpg; then | ||
echo "jpg image is different" | ||
status_code=1 | ||
fi | ||
|
||
if ! cmp -s image.png result.png; then | ||
echo "png image is different" | ||
status_code=1 | ||
fi | ||
|
||
exit $status_code |