mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 03:50:16 +02:00
Incremental fixes
This commit is contained in:
parent
1d0d471865
commit
945e917b15
1 changed files with 7 additions and 4 deletions
11
.github/workflows/cmake.yml
vendored
11
.github/workflows/cmake.yml
vendored
|
@ -133,14 +133,17 @@ jobs:
|
||||||
- name: Install python modules
|
- name: Install python modules
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
uname
|
if [ "`uname`" == Darwin ]; then
|
||||||
echo '${{ toJson(env) }}'
|
pip3 install boto3 PyGithub
|
||||||
pip install boto3 PyGithub
|
else
|
||||||
|
pip install boto3 PyGithub
|
||||||
|
fi
|
||||||
- name: Create Build Environment
|
- name: Create Build Environment
|
||||||
run: cmake -E make_directory ${{runner.workspace}}/build
|
run: cmake -E make_directory ${{runner.workspace}}/build
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
|
shell: bash
|
||||||
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCLIENT_ONLY:BOOLEAN=$CLIENT_ONLY $CMAKE_EXTRA
|
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCLIENT_ONLY:BOOLEAN=$CLIENT_ONLY $CMAKE_EXTRA
|
||||||
# macOS
|
# macOS
|
||||||
- name: Build Console (macOS)
|
- name: Build Console (macOS)
|
||||||
|
@ -209,7 +212,7 @@ jobs:
|
||||||
cp $GITHUB_WORKSPACE/tools/ci-scripts/linux-gha/hifi.conf .
|
cp $GITHUB_WORKSPACE/tools/ci-scripts/linux-gha/hifi.conf .
|
||||||
docker build -t $LINUX_DOCKER_IMAGE_NAME -f $GITHUB_WORKSPACE/tools/ci-scripts/linux-gha/Dockerfile ./
|
docker build -t $LINUX_DOCKER_IMAGE_NAME -f $GITHUB_WORKSPACE/tools/ci-scripts/linux-gha/Dockerfile ./
|
||||||
- name: Export Docker image (Linux)
|
- name: Export Docker image (Linux)
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest' && env.RELEASE_TYPE == 'PRODUCTION'
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
run: docker save -o ${{runner.workspace}}/build/hifi_docker_image.tar $LINUX_DOCKER_IMAGE_NAME
|
run: docker save -o ${{runner.workspace}}/build/hifi_docker_image.tar $LINUX_DOCKER_IMAGE_NAME
|
||||||
|
|
Loading…
Reference in a new issue