21 lines
520 B
YAML
21 lines
520 B
YAML
on:
|
|
pull_request:
|
|
types: [ assigned, opened, synchronize, reopened ]
|
|
|
|
jobs:
|
|
build-test:
|
|
runs-on: x86_64
|
|
container:
|
|
image: ubuntu:16.04
|
|
steps:
|
|
- name: Environment setup
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y python git sudo
|
|
- name: Cloning build tools
|
|
run: git clone https://github.com/ONLYOFFICE/build_tools.git -b v8.1.1.39
|
|
- name: Building onlyoffice
|
|
run: |
|
|
cd build_tools/tools/linux
|
|
./automate.py server
|
|
|