Skip to content

Commit

Permalink
[NetKAT] Small tweaks to Github Actions script and MODULE.bazel.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 687636777
  • Loading branch information
smolkaj committed Oct 19, 2024
1 parent 5d3daad commit f1a0e8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
schedule:
# Run daily at midnight to ensure we catch regressions.
- cron: "0 0 * * *"
# Manual
# Allow manual triggering of the workflow.
# https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch:

jobs:
Expand All @@ -26,11 +27,9 @@ jobs:
path: "~/.cache/bazel"
key: bazel-${{ hashFiles('MODULE.bazel', 'WORKSPACE.bazel', '.bazelrc') }}-${{ github.ref_name }}
restore-keys: |
bazel-${{hashFiles('MODULE.bazel', 'WORKSPACE.bazel', '.bazelrc') }}-${{ github.ref_name }}
bazel-${{hashFiles('MODULE.bazel', 'WORKSPACE.bazel', '.bazelrc') }}
bazel-
- name: Build
run: bazel build --test_output=errors //...
- name: Test
Expand Down
1 change: 0 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ module(
compatibility_level = 1,
)

bazel_dep(name = "rules_cc", version = "0.0.13")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "protobuf", version = "28.2", repo_name = "com_google_protobuf")
bazel_dep(name = "abseil-cpp", version = "20240116.2", repo_name = "com_google_absl")
Expand Down

0 comments on commit f1a0e8e

Please sign in to comment.