mirror of https://github.com/yandex/odyssey.git
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
name: CMake
|
|
|
|
on:
|
|
# Trigger the workflow on push or pull request,
|
|
# but only for the main branch
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
# Also trigger on page_build, as well as release created events
|
|
page_build:
|
|
release:
|
|
types: # This configuration does not affect the page_build event above
|
|
- created
|
|
|
|
|
|
jobs:
|
|
build_and_release:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# os: [ubuntu-latest, ubuntu-18.04]
|
|
os : [ubuntu-18.04, ubuntu-20.04, ubuntu-latest]
|
|
compiler: [gcc, clang]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install dependencies
|
|
run: sudo bash scripts/install_ci.sh
|
|
|
|
|
|
- name: Format
|
|
run: ./run-clang-format/run-clang-format.py -r --clang-format-executable clang-format-10 modules sources stress test third_party
|
|
|
|
- name: Test
|
|
env:
|
|
CC: ${{ matrix.compiler }}
|
|
CC_FOR_BUILD: ${{ matrix.compiler }}
|
|
run: make run_test
|
|
|
|
- name: Prepare for release
|
|
run: tar -zcf odyssey.linux-amd64.$(git rev-parse --short HEAD).tar.gz sources
|
|
|
|
- name: Release
|
|
uses: fnkr/github-action-ghr@v1
|
|
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-18.04' && matrix.compiler == 'gcc' # We need to release only once
|
|
env:
|
|
GHR_PATH: odyssey.linux-amd64.$(git rev-parse --short HEAD).tar.gz
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|