update : some minor issues and use PolarisPolicy for healthcheck instances #53
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: ci build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| compile-witm-bazel: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Install Bazel 5.4.0 | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y apt-transport-https curl gnupg | |
| curl -LO "https://releases.bazel.build/5.4.0/release/bazel-5.4.0-linux-x86_64" | |
| chmod +x bazel-5.4.0-linux-x86_64 | |
| sudo mv bazel-5.4.0-linux-x86_64 /usr/local/bin/bazel | |
| - name: bazel build | |
| run: bazel build ... | |