slack-19.0
: optimize sqlutils.ToSqlite3Dialect
, part 2 (#546)
#3585
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: unit_race | |
on: [push, pull_request] | |
concurrency: | |
group: format('{0}-{1}', ${{ github.ref }}, 'unit_race') | |
cancel-in-progress: true | |
permissions: read-all | |
env: | |
GOPRIVATE: github.com/slackhq/vitess-addons | |
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}" | |
jobs: | |
build: | |
name: Unit Test (Race) | |
runs-on: | |
group: vitess-ubuntu20 | |
steps: | |
- name: Skip CI | |
run: | | |
if [[ "${{contains( github.event.pull_request.labels.*.name, 'Skip CI')}}" == "true" ]]; then | |
echo "skipping CI due to the 'Skip CI' label" | |
exit 1 | |
fi | |
- name: Check if workflow needs to be skipped | |
id: skip-workflow | |
run: | | |
skip='false' | |
echo Skip ${skip} | |
echo "skip-workflow=${skip}" >> $GITHUB_OUTPUT | |
- name: Check out code | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' | |
uses: actions/checkout@v4 | |
- name: Check for changes in relevant files | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' | |
uses: dorny/paths-filter@v3.0.1 | |
id: changes | |
with: | |
token: '' | |
filters: | | |
unit_tests: | |
- 'go/**' | |
- 'test.go' | |
- 'Makefile' | |
- 'build.env' | |
- 'go.sum' | |
- 'go.mod' | |
- 'proto/*.proto' | |
- 'tools/**' | |
- 'config/**' | |
- 'bootstrap.sh' | |
- '.github/workflows/unit_race.yml' | |
- name: Set up Go | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true' | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.5 | |
- name: Setup github.com/slackhq/vitess-additions access token | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true' | |
run: git config --global url.https://$GH_ACCESS_TOKEN@github.com/.insteadOf https://github.com/ | |
- name: Tune the OS | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true' | |
run: | | |
sudo sysctl -w net.ipv4.ip_local_port_range="22768 65535" | |
- name: Get dependencies | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true' | |
run: | | |
export DEBIAN_FRONTEND="noninteractive" | |
sudo apt-get update | |
# mysql80 | |
sudo apt-get install -y mysql-server mysql-client | |
sudo apt-get install -y make unzip g++ curl git wget ant openjdk-11-jdk eatmydata | |
sudo service mysql stop | |
sudo bash -c "echo '/usr/sbin/mysqld { }' > /etc/apparmor.d/usr.sbin.mysqld" # https://bugs.launchpad.net/ubuntu/+source/mariadb-10.1/+bug/1806263 | |
sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/ | |
sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld || echo "could not remove mysqld profile" | |
mkdir -p dist bin | |
curl -L https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz | tar -zxC dist | |
mv dist/etcd-v3.3.10-linux-amd64/{etcd,etcdctl} bin/ | |
go mod download | |
go install golang.org/x/tools/cmd/goimports@latest | |
- name: Run make tools | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true' | |
run: | | |
make tools | |
- name: unit_race | |
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true' | |
timeout-minutes: 45 | |
run: | | |
# We set the VTDATAROOT to the /tmp folder to reduce the file path of mysql.sock file | |
# which musn't be more than 107 characters long. | |
export VTDATAROOT="/tmp/" | |
export NOVTADMINBUILD=1 | |
eatmydata -- make unit_test_race |