mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-05 15:03:33 +08:00
latest
This commit is contained in:
parent
80908ddbfc
commit
8ccc5438f5
44
.github/workflows/cd.yml
vendored
44
.github/workflows/cd.yml
vendored
@ -14,8 +14,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-gui-debug-build
|
run: make prefab-gui-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -31,8 +31,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-server-debug-build
|
run: make prefab-server-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -48,8 +48,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-linux-arm64-gui-debug-build
|
run: make prefab-linux-arm64-gui-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -65,8 +65,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-linux-arm64-server-debug-build
|
run: make prefab-linux-arm64-server-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -82,8 +82,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-mac-x86-64-gui-debug-build
|
run: make prefab-mac-x86-64-gui-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -99,8 +99,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-mac-x86-64-server-debug-build
|
run: make prefab-mac-x86-64-server-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -116,8 +116,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-mac-arm64-gui-debug-build
|
run: make prefab-mac-arm64-gui-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -133,8 +133,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-mac-arm64-server-debug-build
|
run: make prefab-mac-arm64-server-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -150,8 +150,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-windows-x86-gui-debug-build
|
run: make prefab-windows-x86-gui-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -167,8 +167,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make prefab-windows-x86-server-debug-build
|
run: make prefab-windows-x86-server-debug-build
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
@ -184,8 +184,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Make the build
|
- name: Make the build
|
||||||
run: make docs-sphinx
|
run: make docs-sphinx
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
|
|||||||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Run checks
|
- name: Run checks
|
||||||
run: BA_PCOMMANDBATCH_BUILD_REQUIRE=1 make check
|
run: BA_PCOMMANDBATCH_BUILD_REQUIRE=1 make check
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Assemble monolithic server build
|
- name: Assemble monolithic server build
|
||||||
run: make cmake-server-build
|
run: make cmake-server-build
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
@ -54,7 +54,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Build spinoff project with only core featureset
|
- name: Build spinoff project with only core featureset
|
||||||
run: make spinoff-test-core
|
run: make spinoff-test-core
|
||||||
- name: Build spinoff project with core and base featuresets
|
- name: Build spinoff project with core and base featuresets
|
||||||
@ -72,7 +72,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Create poo feature-set
|
- name: Create poo feature-set
|
||||||
run: tools/spinoff fset-copy template_fs poo
|
run: tools/spinoff fset-copy template_fs poo
|
||||||
- name: Add new feature-set to project
|
- name: Add new feature-set to project
|
||||||
|
|||||||
4
.github/workflows/deploy_docs.yml
vendored
4
.github/workflows/deploy_docs.yml
vendored
@ -15,8 +15,8 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
- name: Install pip requirements
|
- name: Setup project environment
|
||||||
run: make prereqs
|
run: make env
|
||||||
- name: Build documentation
|
- name: Build documentation
|
||||||
run: make docs-sphinx
|
run: make docs-sphinx
|
||||||
- name: Upload the build
|
- name: Upload the build
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user