Skip to content

Commit

Permalink
workflows; update freebsd.yml to add back builds with new action
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcornu authored Nov 6, 2023
1 parent d0bbe62 commit 3f5285b
Showing 1 changed file with 31 additions and 9 deletions.
40 changes: 31 additions & 9 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,42 @@ on:
branches: [ main ]

jobs:
test:
# Build shared library with GMake (Clang)
release-gmake-clang-shared:
runs-on: macos-12

steps:
- uses: actions/checkout@v3
- name: Checkout repo
uses: actions/checkout@v3
with:
repository: 'intel/intel-ipsec-mb'

- name: Build
uses: cross-platform-actions/action@v0.15.0
with:
operating_system: freebsd
version: '13.2'
run: |
freebsd-version
pkg install -y curl nasm llvm gmake
gmake CC=clang -j 4
# Build shared library with GMake (GCC)
release-gmake-gcc-shared:
runs-on: macos-12

steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
repository: 'intel/intel-ipsec-mb'

- name: Test
- name: Build
uses: cross-platform-actions/action@v0.15.0
with:
operating_system: freebsd
version: '13.2'
run: |
uname -a
echo $SHELL
pwd
ls -lah
whoami
env | sort
freebsd-version
pkg install -y curl nasm gmake gcc
gmake CC=gcc -j 4

0 comments on commit 3f5285b

Please sign in to comment.