2020-12-23 11:31:16 +00:00
|
|
|
name: Linux
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
schedule:
|
|
|
|
- cron: '10 12 * * 0'
|
|
|
|
|
2022-03-28 22:18:29 +00:00
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
|
|
|
|
AWS_DEFAULT_REGION: us-west-2
|
|
|
|
|
2020-12-23 11:31:16 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: ${{ matrix.type }}-build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-04-09 22:52:34 +00:00
|
|
|
type: [libs, client, apps, libs-vcpkg, client-vcpkg, apps-vcpkg, server, manager-with-webview, manager-without-webview, unit-test, integration-test]
|
2020-12-23 11:31:16 +00:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-09 15:52:25 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2020-12-23 11:31:16 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-02-18 22:35:16 +00:00
|
|
|
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu bionic main universe'
|
2020-12-23 11:31:16 +00:00
|
|
|
sudo apt-get -qq update
|
2021-08-15 19:40:57 +00:00
|
|
|
sudo apt-get install -y libftgl-dev freeglut3-dev libcurl4-openssl-dev libxmu-dev libxi-dev libfcgi-dev libxss-dev libnotify-dev libxcb-util0-dev libgtk2.0-dev libwebkitgtk-dev p7zip-full libxxf86vm-dev ocl-icd-opencl-dev zip
|
2020-12-23 11:31:16 +00:00
|
|
|
|
|
|
|
- name: Install dependencies for integration testing
|
|
|
|
if: matrix.type == 'integration-test'
|
|
|
|
run: |
|
|
|
|
sudo apt-get install ansible
|
|
|
|
sudo service mysql stop
|
|
|
|
./integration_test/installTestSuite.sh
|
|
|
|
|
|
|
|
- name: Cache dependencies
|
2021-10-12 08:17:14 +00:00
|
|
|
uses: actions/cache@v2
|
2020-12-23 11:31:16 +00:00
|
|
|
with:
|
2021-06-09 16:34:44 +00:00
|
|
|
path: |
|
|
|
|
3rdParty/buildCache
|
|
|
|
!3rdParty/buildCache/linux/vcpkgcache/
|
2022-02-03 12:11:46 +00:00
|
|
|
key: linux-${{ matrix.type }}-${{ hashFiles('3rdParty/*Linux*.sh', 'linux/*.sh', '.github/workflows/linux.yml') }}
|
2020-12-23 11:31:16 +00:00
|
|
|
|
2022-03-28 22:18:29 +00:00
|
|
|
- name: Check if build is running from origin repo
|
|
|
|
if: ${{ success() && env.AWS_ACCESS_KEY_ID != 0 && env.AWS_SECRET_ACCESS_KEY != 0 }}
|
2021-05-31 02:57:40 +00:00
|
|
|
run: |
|
2022-03-28 22:18:29 +00:00
|
|
|
echo "VCPKG_BINARY_SOURCES=clear;x-aws,s3://vcpkg.cache.boinc/,readwrite" >> $GITHUB_ENV
|
2021-05-31 02:57:40 +00:00
|
|
|
|
2022-03-28 22:18:29 +00:00
|
|
|
- name: Check if build is running from fork
|
|
|
|
if: ${{ success() && (env.AWS_ACCESS_KEY_ID == 0 || env.AWS_SECRET_ACCESS_KEY == 0) }}
|
2021-05-31 02:57:40 +00:00
|
|
|
run: |
|
2022-03-28 22:18:29 +00:00
|
|
|
echo "VCPKG_BINARY_SOURCES=clear;x-aws-config,no-sign-request;x-aws,s3://vcpkg.cache.boinc/,read" >> $GITHUB_ENV
|
2021-05-31 02:57:40 +00:00
|
|
|
|
2020-12-23 11:31:16 +00:00
|
|
|
- name: Automake
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success()
|
2020-12-23 11:31:16 +00:00
|
|
|
run: ./_autosetup
|
|
|
|
|
|
|
|
- name: Configure libs
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success() && matrix.type == 'libs'
|
2020-12-23 11:31:16 +00:00
|
|
|
run: ./configure --disable-server --disable-client --disable-manager
|
|
|
|
|
|
|
|
- name: Configure client
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success() && matrix.type == 'client'
|
2020-12-23 11:31:16 +00:00
|
|
|
run: ./configure --disable-server --enable-client --disable-manager
|
|
|
|
|
|
|
|
- name: Configure apps
|
|
|
|
if: success() && matrix.type == 'apps'
|
2021-08-15 19:40:57 +00:00
|
|
|
run: ./configure --enable-apps --enable-apps-vbox --enable-apps-gui --disable-server --disable-client --disable-manager
|
2021-04-09 22:52:34 +00:00
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Configure libs with vcpkg
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success() && matrix.type == 'libs-vcpkg'
|
|
|
|
run: linux/ci_configure_libs.sh
|
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Configure client with vcpkg
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success() && matrix.type == 'client-vcpkg'
|
|
|
|
run: linux/ci_configure_client.sh
|
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Configure apps with vcpkg
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success() && matrix.type == 'apps-vcpkg'
|
2021-03-29 21:33:27 +00:00
|
|
|
run: linux/ci_configure_apps.sh
|
2020-12-23 11:31:16 +00:00
|
|
|
|
2021-04-09 22:52:34 +00:00
|
|
|
- name: Configure server
|
|
|
|
if: success() && matrix.type == 'server'
|
|
|
|
run: ./configure --enable-server --disable-client --disable-manager
|
|
|
|
|
2020-12-23 11:31:16 +00:00
|
|
|
- name: Configure manager with webview
|
|
|
|
if: success() && matrix.type == 'manager-with-webview'
|
|
|
|
run: ./3rdParty/buildLinuxDependencies.sh && ./configure --disable-server --disable-client --with-wx-prefix=${GITHUB_WORKSPACE}/3rdParty/buildCache/linux
|
|
|
|
|
|
|
|
- name: Configure manager without webview
|
|
|
|
if: success() && matrix.type == 'manager-without-webview'
|
|
|
|
run: ./3rdParty/buildLinuxDependencies.sh --disable-webview && ./configure --disable-server --disable-client --with-wx-prefix=${GITHUB_WORKSPACE}/3rdParty/buildCache/linux
|
|
|
|
|
|
|
|
- name: Configure server for unit testing
|
|
|
|
if: success() && matrix.type == 'unit-test'
|
|
|
|
run: ./3rdParty/buildLinuxDependencies.sh --gtest-only && ./configure --disable-client --disable-manager --enable-unit-tests CFLAGS="-g -O0" CXXFLAGS="-g -O0"
|
|
|
|
|
|
|
|
- name: Make
|
|
|
|
if: success() && ! contains(matrix.type, 'integration-test')
|
|
|
|
run: make
|
|
|
|
|
|
|
|
- name: Execute unit-test and report coverage
|
|
|
|
if: success() && matrix.type == 'unit-test'
|
2021-08-02 15:57:17 +00:00
|
|
|
run: ./tests/executeUnitTests.sh --report-coverage --report-xml
|
2020-12-23 11:31:16 +00:00
|
|
|
|
|
|
|
- name: Execute integration-test
|
|
|
|
if: success() && matrix.type == 'integration-test'
|
|
|
|
run: ./integration_test/executeTestSuite.sh
|
|
|
|
|
2021-04-26 15:58:02 +00:00
|
|
|
- name: Prepare logs on failure
|
|
|
|
if: ${{ failure() }}
|
2021-08-14 21:58:26 +00:00
|
|
|
run: 7z a -t7z -mx=9 deploy/logs.7z config.log -r0 3rdParty/linux/vcpkg/buildtrees/*.log
|
2021-08-11 00:23:43 +00:00
|
|
|
|
2021-04-26 15:58:02 +00:00
|
|
|
- name: Upload logs on failure
|
|
|
|
if: ${{ failure() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: linux_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/logs.7z
|
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Prepare artifacts for deploy
|
2021-04-09 22:52:34 +00:00
|
|
|
if: success() && ! contains(matrix.type, 'libs') && ! contains(matrix.type, 'server') && ! contains(matrix.type, 'test')
|
2021-08-11 00:23:43 +00:00
|
|
|
run: python ./deploy/prepare_deployment.py linux_${{ matrix.type }}
|
2021-01-04 13:02:50 +00:00
|
|
|
|
2021-03-22 19:32:57 +00:00
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
2021-01-04 13:02:50 +00:00
|
|
|
if: ${{ ! contains(matrix.type, 'libs') && ! contains(matrix.type, 'server') && ! contains(matrix.type, 'test') }}
|
|
|
|
with:
|
|
|
|
name: linux_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
2021-08-11 00:23:43 +00:00
|
|
|
path: deploy/linux_${{ matrix.type }}.7z
|
2021-03-22 19:32:57 +00:00
|
|
|
|
2021-08-02 15:57:17 +00:00
|
|
|
- name: Upload Google Tests Results
|
2021-08-11 00:23:43 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2021-08-05 12:24:07 +00:00
|
|
|
if: always() && matrix.type == 'unit-test' # run this step even if previous step failed
|
2021-08-02 15:57:17 +00:00
|
|
|
with:
|
|
|
|
name: Linux_tests_results
|
|
|
|
path: "tests/gtest/**/*_xml_report.xml"
|
|
|
|
|
2021-10-13 15:19:19 +00:00
|
|
|
- name: Run GCov
|
|
|
|
if: success() && matrix.type == 'unit-test'
|
|
|
|
run: bash -c "find . -type f -name '*.gcno' -exec gcov -pb {} +" || true
|
|
|
|
|
2021-03-22 19:32:57 +00:00
|
|
|
- name: Upload coverage report
|
2021-10-13 15:19:19 +00:00
|
|
|
uses: codecov/codecov-action@v2
|
2021-03-22 19:32:57 +00:00
|
|
|
if: success() && matrix.type == 'unit-test'
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: true
|
|
|
|
verbose: false
|