mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 22:45:46 +03:00
c6888326b0
Closes #2576. Updates #2275. Updates #2419. Updates #2443. Squashed commit of the following: commit b1a4809ada298d675de12740051ba26fb9945957 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri May 21 14:01:40 2021 +0300 all: add --local-frontend, upd docker commit 619ee7c82f27e3405753003dbec556ffb056d025 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu May 20 15:02:33 2021 +0300 bamboo-specs: bump docker version commit 5c2b2fbce80afdcc81fd0cb83674dc3d64facbf1 Merge: 6536b32d9c60aef6
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu May 20 15:01:47 2021 +0300 Merge branch 'master' into 2275-upd-go commit 6536b32dd4580425f7dedde6765463a79b9bd699 Merge: 9bb32bc46f7fd33a
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed May 19 20:38:48 2021 +0300 Merge branch 'master' into 2275-upd-go commit 9bb32bc4c0ac0f3a97195adc75359e48c9c58897 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed May 19 18:48:50 2021 +0300 all: fix build, imp err handling commit 6868eac7f7d2980fb706881f53e72afe5f7c3447 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed May 19 18:09:32 2021 +0300 all: fix github lint commit ebbb9c55f32fbd57e34e8b161016aa6b291c097c Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed May 19 17:36:56 2021 +0300 all: update go and backend tools
132 lines
4 KiB
YAML
132 lines
4 KiB
YAML
'name': 'build'
|
|
|
|
'env':
|
|
'GO_VERSION': '1.16'
|
|
'NODE_VERSION': '14'
|
|
|
|
'on':
|
|
'push':
|
|
'branches':
|
|
- '*'
|
|
'tags':
|
|
- 'v*'
|
|
'pull_request':
|
|
|
|
'jobs':
|
|
'test':
|
|
'runs-on': '${{ matrix.os }}'
|
|
'env':
|
|
'GO111MODULE': 'on'
|
|
'GOPROXY': 'https://goproxy.cn'
|
|
'strategy':
|
|
'fail-fast': false
|
|
'matrix':
|
|
'os':
|
|
- 'ubuntu-latest'
|
|
- 'macOS-latest'
|
|
- 'windows-latest'
|
|
'steps':
|
|
- 'name': 'Checkout'
|
|
'uses': 'actions/checkout@v2'
|
|
'with':
|
|
'fetch-depth': 0
|
|
- 'name': 'Set up Go'
|
|
'uses': 'actions/setup-go@v2'
|
|
'with':
|
|
'go-version': '${{ env.GO_VERSION }}'
|
|
- 'name': 'Set up Node'
|
|
'uses': 'actions/setup-node@v1'
|
|
'with':
|
|
'node-version': '${{ env.NODE_VERSION }}'
|
|
- 'name': 'Set up Go modules cache'
|
|
'uses': 'actions/cache@v2'
|
|
'with':
|
|
'path': '~/go/pkg/mod'
|
|
'key': "${{ runner.os }}-go-${{ hashFiles('go.sum') }}"
|
|
'restore-keys': '${{ runner.os }}-go-'
|
|
- 'name': 'Get npm cache directory'
|
|
'id': 'npm-cache'
|
|
'run': 'echo "::set-output name=dir::$( npm config get cache )"'
|
|
- 'name': 'Set up npm cache'
|
|
'uses': 'actions/cache@v2'
|
|
'with':
|
|
'path': '${{ steps.npm-cache.outputs.dir }}'
|
|
'key': "${{ runner.os }}-node-${{ hashFiles('client/package-lock.json') }}"
|
|
'restore-keys': '${{ runner.os }}-node-'
|
|
- 'name': 'Run make ci'
|
|
'shell': 'bash'
|
|
'run': 'make VERBOSE=1 ci'
|
|
- 'name': 'Upload coverage'
|
|
'uses': 'codecov/codecov-action@v1'
|
|
'if': "success() && matrix.os == 'ubuntu-latest'"
|
|
'with':
|
|
'token': '${{ secrets.CODECOV_TOKEN }}'
|
|
'file': './coverage.txt'
|
|
|
|
'build-release':
|
|
'runs-on': 'ubuntu-latest'
|
|
'needs': 'test'
|
|
'steps':
|
|
- 'name': 'Checkout'
|
|
'uses': 'actions/checkout@v2'
|
|
'with':
|
|
'fetch-depth': 0
|
|
- 'name': 'Set up Go'
|
|
'uses': 'actions/setup-go@v2'
|
|
'with':
|
|
'go-version': '${{ env.GO_VERSION }}'
|
|
- 'name': 'Set up Node'
|
|
'uses': 'actions/setup-node@v1'
|
|
'with':
|
|
'node-version': '${{ env.NODE_VERSION }}'
|
|
- 'name': 'Set up Go modules cache'
|
|
'uses': 'actions/cache@v2'
|
|
'with':
|
|
'path': '~/go/pkg/mod'
|
|
'key': "${{ runner.os }}-go-${{ hashFiles('go.sum') }}"
|
|
'restore-keys': '${{ runner.os }}-go-'
|
|
- 'name': 'Get npm cache directory'
|
|
'id': 'npm-cache'
|
|
'run': 'echo "::set-output name=dir::$(npm config get cache)"'
|
|
- 'name': 'Set up npm cache'
|
|
'uses': 'actions/cache@v2'
|
|
'with':
|
|
'path': '${{ steps.npm-cache.outputs.dir }}'
|
|
'key': "${{ runner.os }}-node-${{ hashFiles('client/package-lock.json') }}"
|
|
'restore-keys': '${{ runner.os }}-node-'
|
|
- 'name': 'Set up Snapcraft'
|
|
'run': 'sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft'
|
|
- 'name': 'Set up QEMU'
|
|
'uses': 'docker/setup-qemu-action@v1'
|
|
- 'name': 'Set up Docker Buildx'
|
|
'uses': 'docker/setup-buildx-action@v1'
|
|
- 'name': 'Run snapshot build'
|
|
'run': 'make SIGN=0 VERBOSE=1 build-release build-docker'
|
|
|
|
'notify':
|
|
'needs':
|
|
- 'build-release'
|
|
# Secrets are not passed to workflows that are triggered by a pull request
|
|
# from a fork.
|
|
#
|
|
# Use always() to signal to the runner that this job must run even if the
|
|
# previous ones failed.
|
|
'if':
|
|
${{ always() &&
|
|
(
|
|
github.event_name == 'push' ||
|
|
github.event.pull_request.head.repo.full_name == github.repository
|
|
)
|
|
}}
|
|
'runs-on': 'ubuntu-latest'
|
|
'steps':
|
|
- 'name': 'Conclusion'
|
|
'uses': 'technote-space/workflow-conclusion-action@v1'
|
|
- 'name': 'Send Slack notif'
|
|
'uses': '8398a7/action-slack@v3'
|
|
'with':
|
|
'status': '${{ env.WORKFLOW_CONCLUSION }}'
|
|
'fields': 'repo, message, commit, author, workflow'
|
|
'env':
|
|
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
|
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|