From 8ccc5438f59340b6ce723b7dffdc8fb9c87ea948 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Tue, 23 Apr 2024 22:34:39 -0700 Subject: [PATCH] latest --- .github/workflows/cd.yml | 44 +++++++++++++++---------------- .github/workflows/ci.yml | 8 +++--- .github/workflows/deploy_docs.yml | 4 +-- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 9e91f6e7..c40ddd1c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,8 +14,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-gui-debug-build - name: Upload the build @@ -31,8 +31,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-server-debug-build - name: Upload the build @@ -48,8 +48,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-linux-arm64-gui-debug-build - name: Upload the build @@ -65,8 +65,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-linux-arm64-server-debug-build - name: Upload the build @@ -82,8 +82,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-mac-x86-64-gui-debug-build - name: Upload the build @@ -99,8 +99,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-mac-x86-64-server-debug-build - name: Upload the build @@ -116,8 +116,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-mac-arm64-gui-debug-build - name: Upload the build @@ -133,8 +133,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-mac-arm64-server-debug-build - name: Upload the build @@ -150,8 +150,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-windows-x86-gui-debug-build - name: Upload the build @@ -167,8 +167,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make prefab-windows-x86-server-debug-build - name: Upload the build @@ -184,8 +184,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Make the build run: make docs-sphinx - name: Upload the build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d363a155..e706ab29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: with: python-version: '3.12' - name: Install dependencies - run: make prereqs + run: make env - name: Run checks run: BA_PCOMMANDBATCH_BUILD_REQUIRE=1 make check @@ -36,7 +36,7 @@ jobs: with: python-version: '3.12' - name: Install dependencies - run: make prereqs + run: make env - name: Assemble monolithic server build run: make cmake-server-build - name: Run tests @@ -54,7 +54,7 @@ jobs: with: python-version: '3.12' - name: Install dependencies - run: make prereqs + run: make env - name: Build spinoff project with only core featureset run: make spinoff-test-core - name: Build spinoff project with core and base featuresets @@ -72,7 +72,7 @@ jobs: with: python-version: '3.12' - name: Install dependencies - run: make prereqs + run: make env - name: Create poo feature-set run: tools/spinoff fset-copy template_fs poo - name: Add new feature-set to project diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index a17c6a53..b3d9aa43 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -15,8 +15,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' - - name: Install pip requirements - run: make prereqs + - name: Setup project environment + run: make env - name: Build documentation run: make docs-sphinx - name: Upload the build