mirror of
https://github.com/lubosz/overte.git
synced 2025-08-12 17:24:01 +02:00
Further updates
This commit is contained in:
parent
fe7380630e
commit
5a4210a04f
4 changed files with 4 additions and 4 deletions
2
.github/workflows/pr_build.yml
vendored
2
.github/workflows/pr_build.yml
vendored
|
@ -169,7 +169,7 @@ jobs:
|
||||||
- name: Build for Android + Quest
|
- name: Build for Android + Quest
|
||||||
if: matrix.build_type == 'android'
|
if: matrix.build_type == 'android'
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: ${{runner.workspace}}/project-athena
|
working-directory: ${{runner.workspace}}/vircadia
|
||||||
run: |
|
run: |
|
||||||
echo "Pre-cache the vcpkg managed dependencies"
|
echo "Pre-cache the vcpkg managed dependencies"
|
||||||
$PYTHON_EXEC prebuild.py --build-root ${{runner.workspace}}/build --android interface
|
$PYTHON_EXEC prebuild.py --build-root ${{runner.workspace}}/build --android interface
|
||||||
|
|
|
@ -17,7 +17,7 @@ test -z "$STABLE_BUILD" && export STABLE_BUILD=0
|
||||||
docker run \
|
docker run \
|
||||||
--rm \
|
--rm \
|
||||||
--security-opt seccomp:unconfined \
|
--security-opt seccomp:unconfined \
|
||||||
-v "${WORKSPACE}":/home/gha/project-athena \
|
-v "${WORKSPACE}":/home/gha/vircadia \
|
||||||
-e RELEASE_NUMBER \
|
-e RELEASE_NUMBER \
|
||||||
-e RELEASE_TYPE \
|
-e RELEASE_TYPE \
|
||||||
-e ANDROID_APP \
|
-e ANDROID_APP \
|
||||||
|
|
|
@ -72,7 +72,7 @@ namespace NetworkingConstants {
|
||||||
const QUrl HELP_FORUM_URL { "https://forums.vircadia.dev" };
|
const QUrl HELP_FORUM_URL { "https://forums.vircadia.dev" };
|
||||||
const QUrl HELP_SCRIPTING_REFERENCE_URL{ "https://apidocs.vircadia.dev/" };
|
const QUrl HELP_SCRIPTING_REFERENCE_URL{ "https://apidocs.vircadia.dev/" };
|
||||||
const QUrl HELP_RELEASE_NOTES_URL{ "https://docs.vircadia.dev/release-notes.html" };
|
const QUrl HELP_RELEASE_NOTES_URL{ "https://docs.vircadia.dev/release-notes.html" };
|
||||||
const QUrl HELP_BUG_REPORT_URL{ "https://github.com/kasenvr/project-athena/issues" };
|
const QUrl HELP_BUG_REPORT_URL{ "https://github.com/vircadia/vircadia/issues" };
|
||||||
|
|
||||||
const QString DEFAULT_VIRCADIA_ADDRESS = "file:///~/serverless/tutorial.json";
|
const QString DEFAULT_VIRCADIA_ADDRESS = "file:///~/serverless/tutorial.json";
|
||||||
const QString DEFAULT_HOME_ADDRESS = "file:///~/serverless/tutorial.json";
|
const QString DEFAULT_HOME_ADDRESS = "file:///~/serverless/tutorial.json";
|
||||||
|
|
|
@ -102,7 +102,7 @@ def parse_args():
|
||||||
if True:
|
if True:
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
else:
|
else:
|
||||||
args = parser.parse_args(['--android', 'questInterface', '--build-root', 'C:/git/project-athena/android/apps/questInterface/.externalNativeBuild/cmake/debug/arm64-v8a'])
|
args = parser.parse_args(['--android', 'questInterface', '--build-root', 'C:/git/vircadia/android/apps/questInterface/.externalNativeBuild/cmake/debug/arm64-v8a'])
|
||||||
return args
|
return args
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in a new issue