-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically check build in for 32bit arch. Signed-off-by: Artem Senichev <[email protected]>
- Loading branch information
Showing
4 changed files
with
76 additions
and
2 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,57 @@ | ||
name: Linux/i386 | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
env: | ||
BUILD_PATH: /tmp/build | ||
INSTALL_PATH: /tmp/install | ||
|
||
steps: | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get swayimg version | ||
run: echo "VERSION=$(git describe --tags --long --always | sed 's/^v//;s/-/./')" >> $GITHUB_OUTPUT | ||
id: version | ||
|
||
- name: Build docker image | ||
run: docker build --tag=swayimg --file=.github/workflows/Dockerfile.Alpine . | ||
|
||
- name: Run docker container | ||
run: docker run --tty --detach --name=swayimg --volume=$PWD:$PWD:ro --workdir=$PWD swayimg | ||
|
||
- name: Configure | ||
run: > | ||
docker exec swayimg | ||
meson setup | ||
-D version=${{steps.version.outputs.VERSION}} | ||
-D heif=enabled | ||
-D bash=enabled | ||
-D exif=enabled | ||
-D gif=enabled | ||
-D jpeg=enabled | ||
-D jxl=auto | ||
-D svg=enabled | ||
-D webp=enabled | ||
-D man=true | ||
-D desktop=true | ||
--prefix=/usr | ||
--werror | ||
${{ env.BUILD_PATH }} | ||
- name: Compile and link | ||
run: docker exec swayimg meson compile -C ${{ env.BUILD_PATH }} | ||
|
||
- name: Install | ||
run: > | ||
docker exec swayimg | ||
env DESTDIR=${{ env.INSTALL_PATH }} | ||
meson install -C ${{ env.BUILD_PATH }} | ||
- name: Run installed | ||
run: docker exec swayimg ${{ env.INSTALL_PATH }}/usr/bin/swayimg --version |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Arch Linux | ||
name: Linux/x86_64 | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
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,17 @@ | ||
FROM i386/alpine:latest | ||
|
||
RUN apk add \ | ||
build-base \ | ||
bash-completion-dev \ | ||
giflib-dev \ | ||
json-c-dev \ | ||
libexif-dev \ | ||
libheif-dev \ | ||
libjpeg-turbo-dev \ | ||
libjxl-dev \ | ||
librsvg-dev \ | ||
libwebp-dev \ | ||
libxkbcommon-dev \ | ||
meson \ | ||
wayland-dev \ | ||
wayland-protocols |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: FreeBSD | ||
name: FreeBSD/x86_64 | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
|