From 61a78a0f9a88eef90e29a3b8feeed939cf01c1f3 Mon Sep 17 00:00:00 2001 From: Barry McCormick Date: Sun, 25 May 2025 17:39:08 -0700 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfd4f743..b09da1df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,11 +1,11 @@ -name: Test +name: Bastille_Testing on: - pull_request: - branches: - - master + pull_request_review: + types: [submitted, edited] jobs: test: + if: ${{ github.event.pull_request.base.ref == 'master' }} runs-on: ubuntu-latest name: BastilleBSD testing env: @@ -23,14 +23,16 @@ jobs: pkg install -y curl run: | - pwd - ls -lah - whoami - env - freebsd-version - sysctl hw.model - sysctl hw.ncpu - sysctl hw.physmem - sysctl hw.usermem - + pkg install git + git clone https://github.com/BastilleBSD/rocinante.git + cd rocinante && make install + rocinante bootstrap https://github.com/BastilleBSD/rocinante.git + cd .. + git clone https://github.com/BastilleBSD/bastille.git + cd bastille + git checkout $branch + make install + + +