1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-07-02 10:00:23 +08:00

TUN-4356: Set AUTOMAXPROCS to the CPU limit when running in a Linux container

This commit is contained in:
Adam Chalmers
2021-05-06 12:22:43 -05:00
committed by Areg Harutyunyan
parent 209091da39
commit 07af2a33b7
28 changed files with 1244 additions and 0 deletions

24
vendor/go.uber.org/automaxprocs/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,24 @@
language: go
sudo: false
go_import_path: go.uber.org/automaxprocs
env:
global:
- GO111MODULE=on
matrix:
include:
- go: oldstable
- go: stable
env: LINT=1
install:
- make install
script:
- test -z "$LINT" || make lint
- make test
after_success:
- make cover
- bash <(curl -s https://codecov.io/bash)