feat: 主配置变量(max_procs/file_identifier)补齐至全部平台插件包模板 (#137) #1970
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: [master, stag] | |
| paths: | |
| - '**' | |
| pull_request: | |
| branches: [master, stag] | |
| paths: | |
| - '**' | |
| schedule: | |
| - cron: "0 10 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 2 | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: '1.14' | |
| - name: Build | |
| run: | | |
| make | |
| ./bin/bkunifylogbeat -v | |
| rm -rf ./bin |