Further updates

This commit is contained in:
David Rowe 2020-12-12 21:17:53 +13:00
parent e8a2de86bb
commit fe7380630e
3 changed files with 5 additions and 5 deletions

View file

@ -105,7 +105,7 @@ Qt must be installed in `$HIFI_QT_BASE/$VIRCADIA_USE_QT_VERSION/qt5-install`.
Create the build directory: Create the build directory:
```bash ```bash
cd project-athena cd vircadia
mkdir build mkdir build
cd build cd build
``` ```

View file

@ -6,7 +6,7 @@ Contributing
2. Clone your fork of the repository locally 2. Clone your fork of the repository locally
``` ```
git clone git://github.com/USERNAME/project-athena.git git clone git://github.com/USERNAME/vircadia.git
``` ```
3. Create a new branch 3. Create a new branch

View file

@ -74,15 +74,15 @@ RUN mkdir "$HIFI_BASE" && \
# Download the repo # Download the repo
RUN git clone https://github.com/vircadia/vircadia.git RUN git clone https://github.com/vircadia/vircadia.git
WORKDIR /home/gha/project-athena WORKDIR /home/gha/vircadia
RUN mkdir build RUN mkdir build
# Pre-cache the vcpkg managed dependencies # Pre-cache the vcpkg managed dependencies
WORKDIR /home/gha/project-athena/build WORKDIR /home/gha/vircadia/build
RUN python3 ../prebuild.py --build-root `pwd` --android interface RUN python3 ../prebuild.py --build-root `pwd` --android interface
# Pre-cache the gradle dependencies # Pre-cache the gradle dependencies
WORKDIR /home/gha/project-athena/android WORKDIR /home/gha/vircadia/android
RUN ./gradlew -m tasks -PHIFI_ANDROID_PRECOMPILED=$HIFI_ANDROID_PRECOMPILED RUN ./gradlew -m tasks -PHIFI_ANDROID_PRECOMPILED=$HIFI_ANDROID_PRECOMPILED
#RUN ./gradlew extractDependencies -PHIFI_ANDROID_PRECOMPILED=$HIFI_ANDROID_PRECOMPILED #RUN ./gradlew extractDependencies -PHIFI_ANDROID_PRECOMPILED=$HIFI_ANDROID_PRECOMPILED