Skip to content

Commit

Permalink
Trying to build Rebol/Triangulate extension for OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Jul 17, 2024
1 parent d2028a1 commit 316279e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/rebol-triangulate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: Rebol-Triangulate-${{github.run_id}}
path: ${{env.OUT}}/triangulate*.gz
path: ${{env.OUT}}/triangulate-linux-*.gz

macos:
runs-on: macos-latest
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: Rebol-Triangulate-${{github.run_id}}
path: ${{env.OUT}}/triangulate*.gz
path: ${{env.OUT}}/triangulate-macos-*.gz

openbsd:
runs-on: ubuntu-latest
Expand All @@ -155,7 +155,7 @@ jobs:
with:
usesh: true
prepare: |
pkg_add curl git iconv libiconv
pkg_add curl git
run: |
pkg_info -L libiconv
Expand All @@ -166,7 +166,16 @@ jobs:
chmod +x ./rebol3
./rebol3 -V
ls -la .
./rebol3 siskin.r3 rebol/triangulate -o ./Release/triangulate-openbsd-x64.rebx triangulate-x64
file ./Release/triangulate-openbsd-x64.rebx
- name: Compress 64bit Rebol/Triangulate extension
run: gzip -9 $OUT/triangulate-openbsd-x64.rebx

- uses: actions/upload-artifact@v3
with:
name: Rebol-Triangulate-${{github.run_id}}
path: ${{env.OUT}}/triangulate-openbsd-*.gz
# Haiku-x86:
# runs-on: ubuntu-latest
# steps:
Expand Down

0 comments on commit 316279e

Please sign in to comment.