Skip to content

Commit

Permalink
Try and make build on Haiku.
Browse files Browse the repository at this point in the history
davidgiven committed Nov 3, 2024
1 parent bba9076 commit 3755631
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ jobs:
container: 'docker.io/hectorm/qemu-haiku:latest'
steps:
- name: startvm
run: 'container-init & timeout 600 vmshell exit 0'
run: container-init & timeout 600 vmshell exit 0

- name: pkgman
run: 'vmshell pkgman install -y make'
@@ -40,10 +40,12 @@ jobs:
uses: 'actions/checkout@v3'

- name: copy
run: 'vmshell mkdir ./src/; tar -cf - ./ | vmshell tar -xf - -C ./src/'
run: |
vmshell mkdir ./src/
tar -cf - ./ | vmshell tar -xf - -C ./src/
- name: build
run: 'vmshell make'
run: vmshell make -C src

build-windows:
runs-on: windows-latest

0 comments on commit 3755631

Please sign in to comment.