SwitchTraffic should switch everything when no tablet_types provided … #118
This file contains 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: check_make_parser | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Check Make Parser | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.16 | |
- name: Tune the OS | |
run: | | |
echo '1024 65535' | sudo tee -a /proc/sys/net/ipv4/ip_local_port_range | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y make unzip g++ etcd curl git wget | |
sudo service etcd stop | |
go mod download | |
- name: Run make minimaltools | |
run: | | |
make minimaltools | |
- name: check_make_parser | |
run: | | |
tools/check_make_parser.sh | |