Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
55f9e18
Add headless client CI builds and Docker packaging
Toys0125 Mar 25, 2026
4b41d56
Add default config.
Toys0125 Mar 25, 2026
f880899
Merge branch 'BasisVR:developer' into Headless-Client-loadtest
Toys0125 Mar 25, 2026
2516045
Have the config.xml be in the headless artifacts.
Toys0125 Mar 25, 2026
876993a
Merge branch 'developer' into pr/686
dooly123 Mar 25, 2026
78a9d7f
Add headless client CI builds and Docker packaging
Toys0125 Mar 25, 2026
004992e
Add default config.
Toys0125 Mar 25, 2026
3eabbea
Have the config.xml be in the headless artifacts.
Toys0125 Mar 25, 2026
14a159e
Merge branch 'Headless-Client-loadtest' of https://github.com/Toys012…
Toys0125 Mar 25, 2026
1590e07
Should disable Opus in Unity_Server.
Toys0125 Mar 25, 2026
c333144
Make sure none are intitialized.
Toys0125 Mar 25, 2026
8babd6b
We remove audiolink out of the package. Hopefully scripts don't crash…
Toys0125 Mar 25, 2026
97a5331
added some validation and corrected bug for headless, will still occu…
dooly123 Mar 26, 2026
0e83bc9
Merge remote-tracking branch 'origin/developer' into Headless-Client-…
Toys0125 Mar 26, 2026
d7e9cec
Adds Bundled platforms to the log.
Toys0125 Mar 26, 2026
edd2f23
Add Arm64 support.
Toys0125 Mar 27, 2026
4bbc2c3
Change the naming on the headless builds.
Toys0125 Mar 27, 2026
f0c7fc7
Add script based install arm64 unity package.
Toys0125 Mar 27, 2026
fee598d
Fix cache corrupting the buildsettings. And explict Player builds in …
Toys0125 Mar 28, 2026
2acbce3
Merge remote-tracking branch 'origin/developer' into Headless-Client-…
Toys0125 Mar 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 2 additions & 19 deletions .github/workflows/build-docker-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ jobs:
uses: actions/cache/restore@v3
with:
path: ${{ env.projectPath }}/Library
key: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-${{ hashFiles(env.projectPath) }}
restore-keys: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-
key: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-client-${{ hashFiles(env.projectPath) }}
restore-keys: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-client-
- name: "Sanitize headless project (Linux)"
if: runner.os == 'Linux'
shell: bash
Expand Down Expand Up @@ -233,23 +233,6 @@ jobs:
<Port>4296</Port>
</Configuration>
EOF
- name: "Save Library Cache"
uses: actions/cache/save@v3
if: always()
with:
path: ${{ env.projectPath }}/Library
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
- name: "Only retain latest cache"
if: always()
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: |
OLD_CACHE_IDS=$(gh cache list --sort created_at --key Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}- --json id --jq '.[1:] | map(.id) | @sh')
for cache_id in $OLD_CACHE_IDS; do
echo "Deleting cache id: $cache_id"
gh cache delete $cache_id
done
- name: "Upload headless artifact"
timeout-minutes: 5
uses: actions/upload-artifact@v4
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ jobs:
uses: actions/cache/restore@v3
with:
path: ${{ env.projectPath }}/Library
key: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-${{ hashFiles(env.projectPath) }}
restore-keys: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-
key: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-client-${{ hashFiles(env.projectPath) }}
restore-keys: Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-client-
- name: "Create version string"
id: version
run: echo "gitversion=$(git describe --tags --always)" >> "$GITHUB_OUTPUT"
Expand Down Expand Up @@ -114,6 +114,7 @@ jobs:
buildName: ${{ env.buildName }}
projectPath: ${{ env.projectPath }}
targetPlatform: ${{ matrix.targetPlatform }}
customParameters: ${{ startsWith(matrix.targetPlatform, 'Standalone') && '-standaloneBuildSubtarget Player' || '' }}
versioning: Custom
version: ${{ steps.version.outputs.gitversion }}
# TODO: make a decision on how we want to increment this.
Expand All @@ -138,7 +139,7 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
OLD_CACHE_IDS=$(gh cache list --sort created_at --key Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}- --json id --jq '.[1:] | map(.id) | @sh')
OLD_CACHE_IDS=$(gh cache list --sort created_at --key Library-${{ env.projectPath }}-${{ matrix.targetPlatform }}-client- --json id --jq '.[1:] | map(.id) | @sh')
for cache_id in $OLD_CACHE_IDS; do
echo "Deleting cache id: $cache_id"
gh cache delete $cache_id
Expand Down
Loading