Skip to content

Commit

Permalink
ci: Add i386 build check
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Senichev <[email protected]>
  • Loading branch information
artemsen committed Aug 4, 2024
1 parent 7daafae commit 4a6cd46
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 2 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/Alpine.yml
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
2 changes: 1 addition & 1 deletion .github/workflows/Arch.yml
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:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/Dockerfile.Alpine
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
2 changes: 1 addition & 1 deletion .github/workflows/FreeBSD.yml
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:
Expand Down

0 comments on commit 4a6cd46

Please sign in to comment.