mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:29:55 +00:00
Let's get testy! (#3172)
Let's try to get testing happening. We also disable artefact building for now.
This commit is contained in:
parent
9c040d1ff7
commit
5f8e487012
1 changed files with 27 additions and 15 deletions
42
.github/workflows/cmake.yml
vendored
42
.github/workflows/cmake.yml
vendored
|
@ -26,25 +26,37 @@ jobs:
|
||||||
key: ${{ matrix.os }}-${{ env.BUILD_TYPE }}
|
key: ${{ matrix.os }}-${{ env.BUILD_TYPE }}
|
||||||
max-size: 1000M
|
max-size: 1000M
|
||||||
|
|
||||||
|
- name: Install gtest
|
||||||
|
run: |
|
||||||
|
export CONFIGURATION="Release"
|
||||||
|
export GOOGLETEST_DIR="."
|
||||||
|
export GENERATOR="Unix Makefiles"
|
||||||
|
export CC="gcc"
|
||||||
|
export CXX="g++"
|
||||||
|
sudo -E CI/build_googletest.sh
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: cmake -S . -B . -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_FLAGS='-Werror' -DCMAKE_CXX_FLAGS="-Werror -Wno-error=deprecated-declarations -Wno-error=nonnull -Wno-error=deprecated-copy"
|
run: cmake -S . -B . -DGTEST_ROOT="$(pwd)/googletest/build" -DGMOCK_ROOT="$(pwd)/googletest/build" -DBUILD_UNITTESTS=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_FLAGS='-Werror' -DCMAKE_CXX_FLAGS="-Werror -Wno-error=deprecated-declarations -Wno-error=nonnull -Wno-error=deprecated-copy"
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build . --config ${{env.BUILD_TYPE}} --parallel 3
|
run: cmake --build . --config ${{env.BUILD_TYPE}} --parallel 3
|
||||||
|
|
||||||
- name: Install
|
- name: Test
|
||||||
shell: bash
|
run: ./openmw_test_suite
|
||||||
run: cmake --install .
|
|
||||||
|
|
||||||
- name: Create Artifact
|
# - name: Install
|
||||||
shell: bash
|
# shell: bash
|
||||||
working-directory: install
|
# run: cmake --install .
|
||||||
run: |
|
|
||||||
ls -laR
|
|
||||||
7z a ../build_artifact.7z .
|
|
||||||
|
|
||||||
- name: Upload Artifact
|
# - name: Create Artifact
|
||||||
uses: actions/upload-artifact@v1
|
# shell: bash
|
||||||
with:
|
# working-directory: install
|
||||||
path: ./build_artifact.7z
|
# run: |
|
||||||
name: build_artifact.7z
|
# ls -laR
|
||||||
|
# 7z a ../build_artifact.7z .
|
||||||
|
|
||||||
|
# - name: Upload Artifact
|
||||||
|
# uses: actions/upload-artifact@v1
|
||||||
|
# with:
|
||||||
|
# path: ./build_artifact.7z
|
||||||
|
# name: build_artifact.7z
|
||||||
|
|
Loading…
Reference in a new issue