Skip to content

Commit

Permalink
duck
Browse files Browse the repository at this point in the history
  • Loading branch information
carenas committed Oct 6, 2024
1 parent a94d1f4 commit 0a1a0a0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,38 @@ jobs:
cd ..
perl -v
maint/RunPerlTest
duck:
name: release
runs-on: ubuntu-latest
container: alpine:edge
steps:
- name: Setup
run: |
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
apk add --no-cache automake autoconf libtool make musl-dev
apk add --no-cache cmake git zig
apk add --no-cache tcc@testing
- name: Checkout
uses: actions/checkout@v4
with:
submodules: yes

- name: Prepare
run: |
zig build
git clean -fxd
cmake -B build -DCMAKE_UNITY_BUILD=ON
cmake --build build
git clean -fxd
./autogen.sh
- name: Configure
run: ./configure CC="zig cc"

- name: Build
run: make distcheck

- name: Test
run: make check
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ build/
*.pc
*.o
*~
.*.swp

*-coverage*

Expand Down

0 comments on commit 0a1a0a0

Please sign in to comment.