Skip to content

Commit

Permalink
try to build openexr
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldsmith committed Jun 6, 2024
1 parent de91191 commit d5b29d4
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,13 @@ on:

jobs:

build:
setup-freeBSD:

runs-on: ubuntu-latest

# based on example from https://github.com/marketplace/actions/freebsd-vm
name: A job to run test in FreeBSD

steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
- name: setup FreeBSD on github runner
id: test
uses: vmactions/freebsd-vm@v1
with:
Expand All @@ -35,6 +32,28 @@ jobs:
whoami
env
freebsd-version
build-openexr2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup FreeBSD on github runner
id: test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y git
pkg install -y cmake
# - name: install dependencies - openexr v2.5
run: |
cd ..
git clone https://github.com/AcademySoftwareFoundation/openexr.git &&
cd openexr &&
git checkout RB-2.5 &&
mkdir build &&
cd build &&
cmake .. &&
make &&
sudo make install

0 comments on commit d5b29d4

Please sign in to comment.