Skip to content

[StepSecurity] Apply security best practices #230

[StepSecurity] Apply security best practices

[StepSecurity] Apply security best practices #230

Workflow file for this run

name: FreeBSD build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-12
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
submodules: recursive
- name: build in FreeBSD VM
id: build
uses: cross-platform-actions/action@0e13474a2ba7ba382e217ad80230150266611323 # v0.21.0
with:
memory: 2048
shell: sh
operating_system: freebsd
version: '13.2'
run: |
sudo pkg install -y curl gmake cmake
pwd
ls -lah
whoami
env
freebsd-version
cmake -B build -DCMAKE_INSTALL_PREFIX=.
cd build && gmake install