build.yaml: switch to r1beta5 #2
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
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: 'r1beta5', runner: 'ubuntu-latest', architecture: 'x86-64' } | |
- { os: haiku, version: 'r1beta5', runner: 'ubuntu-latest', architecture: 'x86' } | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: korli/[email protected] | |
with: | |
operating_system: ${{ matrix.config.os }} | |
version: ${{ matrix.config.version }} | |
architecture: ${{ matrix.config.architecture }} | |
run: | | |
ssh user@localhost "pkgman update -y cmd:gcc makefile_engine" && | |
if [[ `uname -m` == BePC ]]; then | |
ssh user@localhost "pkgman update -y haiku_x86_devel devel:libsqlite3_x86" && | |
cd main && setarch x86 make && setarch x86 make bindcatalogs | |
else | |
ssh user@localhost "pkgman update -y haiku_devel devel:libsqlite3" && | |
cd main && make && make bindcatalogs | |
fi | |