Skip to content

Commit

Permalink
Add CI FreeBSD amd64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
toor1245 committed Sep 1, 2024
1 parent c5fc491 commit a3db1f9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/amd64_freebsd_cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: amd64 FreeBSD CMake

on:
push:
pull_request:
schedule:
# min hours day(month) month day(week)
- cron: '0 0 7,22 * *'

jobs:
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test on ${{ matrix.os.name }}
uses: cross-platform-actions/action@v0.25.0
with:
operating_system: freebsd
architecture: x86-64
version: '14.1'
shell: bash
memory: 5G
cpu_count: 4
run: |
sudo pkg install -y cmake git
sudo cmake --version
sudo cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
sudo cmake --build build --target all -v
sudo cmake --build build --target test -v
sudo cmake --build build --target install -v

0 comments on commit a3db1f9

Please sign in to comment.