7a81e2a129
- add rules to run tests for a specific platform - use downloaded buildifier - move lint to a script - rename ci tasks - stop running under qemu-aarch64-static as it doesn't do anything
11 lines
239 B
Bash
Executable File
11 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xeuo pipefail
|
|
|
|
cd "$(git rev-parse --show-toplevel)/"
|
|
bazel run @go_sdk//:bin/go -- mod tidy
|
|
exec bazel run //:gazelle -- update-repos \
|
|
-from_file=go.mod \
|
|
-prune \
|
|
-to_macro=repositories.bzl%go_repositories
|