-
Notifications
You must be signed in to change notification settings - Fork 14
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
Showing
1 changed file
with
34 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,34 @@ | ||
name: "haiku-ci" | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build-haiku: | ||
timeout-minutes: 60 | ||
runs-on: ${{ matrix.config.runner }} | ||
name: build-${{ matrix.config.os }}-${{ matrix.config.version }}-${{ matrix.config.architecture }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
# The OS versions supported are specific to the version of the action | ||
# https://github.com/cross-platform-actions/action/blob/master/changelog.md | ||
- { os: haiku, version: 'r1beta4', runner: 'ubuntu-latest', architecture: 'x86-64' } | ||
- { os: haiku, version: 'r1beta4', runner: 'ubuntu-latest', architecture: 'x86' } | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: korli/action@v0.23.0-haiku | ||
with: | ||
operating_system: ${{ matrix.config.os }} | ||
version: ${{ matrix.config.version }} | ||
architecture: ${{ matrix.config.architecture }} | ||
run: | | ||
if [[ `uname -m` == BePC ]]; then | ||
ssh user@localhost "pkgman update -y haiku_x86_devel devel:libdjvulibre_x86 devel:libfreetype_x86 devel:libjbig2dec_x86 devel:libjpeg_x86 devel:libmupdf_x86 devel:libopenjp2_x86 devel:libz_x86 cmd:gcc_x86" && | ||
cd application && setarch x86 make | ||
else | ||
ssh user@localhost "pkgman update -y haiku_devel devel:libdjvulibre devel:libfreetype devel:libjbig2dec devel:libjpeg devel:libmupdf devel:libopenjp2 devel:libz cmd:gcc" && | ||
cd application && make | ||
fi |