12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- name: Test Verification
- on:
- push:
- branches:
- - master
- - 0.1.0
- - 0.2
- - 0.3
- - 0.4
- - 0.5
- - ci_check
- jobs:
- build-ubuntu:
- name: Build and Test Ubuntu Latest
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Init submodules
- run: git submodule update --init --recursive
- - name: Build the Ubuntu Latest Docker image
- run: docker build . --file .ci/Dockerfile.ubuntu --tag ubuntu_debugimage:latest
- - name: Run tests
- run: docker run ubuntu_debugimage:latest ctest /build --output-on-failure
- build-opensuse:
- name: Build and Test OpenSUSE Latest
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Init submodules
- run: git submodule update --init --recursive
- - name: Build the OpenSUSE Latest Docker image
- run: docker build . --file .ci/Dockerfile.opensuse --tag opensuse_debugimage:latest
- - name: Run tests
- run: docker run opensuse_debugimage:latest ctest /build --output-on-failure
- build-ubuntu-static:
- name: Static Build and Test Ubuntu Latest
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Init submodules
- run: git submodule update --init --recursive
- - name: Build the Ubuntu Latest Docker image
- run: docker build . --file .ci/Dockerfile.ubuntu_static --tag ubuntu_debugimage_static:latest
- - name: Run tests
- run: docker run ubuntu_debugimage_static:latest ctest /build --output-on-failure
- build-opensuse-static:
- name: Static Build and Test OpenSUSE Latest
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Init submodules
- run: git submodule update --init --recursive
- - name: Build the OpenSUSE Latest Docker image
- run: docker build . --file .ci/Dockerfile.opensuse_static --tag opensuse_debugimage_static:latest
- - name: Run tests
- run: docker run opensuse_debugimage_static:latest ctest /build --output-on-failure
- build-windows:
- name: Static Build and Test Windows MSVC
- runs-on: windows-latest
- steps:
- - uses: actions/checkout@v2
- - name: Init submodules
- run: git submodule update --init --recursive
- - uses: shogo82148/actions-setup-perl@v1
- with:
- perl-version: '5.30'
- distribution: strawberry
- - uses: microsoft/setup-msbuild@v1.0.2
- with:
- vs-version: '16.4'
- - name: Install Deps
- run: |
- choco install wget golang
- mkdir C:\yasm
- wget -q http://www.tortall.net/projects/yasm/releases/yasm-1.3.0-win64.exe -O C:\yasm\yasm.exe
- - name: Install Qt
- run: |
- wget -q https://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe -O C:/qt-unified-windows-x86-online.exe
- C:/qt-unified-windows-x86-online.exe --script ./.ci/qt_installer_windows.qs -d
- - name: Build in Windows
- run: |
- mkdir build-static
- cd build-static
- setx GOROOT "c:\Go"
- setx path "%path%;C:\Qt\5.15.2\msvc2019_64\bin;C:\Go\bin;C:\yasm"
- set GOROOT="c:\Go"
- set PATH="%PATH%;C:\Qt\5.15.2\msvc2019_64\bin;C:\Go\bin;C:\yasm"
- cmake -DCMAKE_PREFIX_PATH="C:\Qt\5.15.2\msvc2019_64;C:\Go\bin;C:\yasm" -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release ..
- cmake --build . --config Release
- - name: Run tests
- run: |
- cd build-static
- ctest -C Release -E grpc --output-on-failure
|