-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setup action for Alpine and start building it. Unfortunately the testsuite is not ready yet and fails to build like this: ../testsuite/path.c:219:14: error: conflicting types for '__xstat64'; have 'int(int, const char *, struct stat64 *)' 219 | WRAP_VERSTAT(__x,64); | ^~~ Add everything needed on the setup action, so when the underlying issue is fixed, the testsuite can be enabled in CI. Signed-off-by: Lucas De Marchi <[email protected]>
- Loading branch information
1 parent
bb21720
commit 0d5efab
Showing
2 changed files
with
37 additions
and
1 deletion.
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,22 @@ | ||
name: 'setup Alpine' | ||
description: 'Setup an Alpine container for running CI' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
apk update | ||
apk add \ | ||
autoconf \ | ||
automake \ | ||
bash \ | ||
build-base \ | ||
gtk-doc \ | ||
libtool \ | ||
linux-edge-dev \ | ||
openssl-dev \ | ||
scdoc \ | ||
xz-dev \ | ||
zlib-dev \ | ||
zstd-dev |
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