Skip to content

Commit 53592ff

Browse files
committed
Don't run with remote execution. Build all bpf tests #ci:bpf-build
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
1 parent c977942 commit 53592ff

File tree

9 files changed

+11
-12
lines changed

9 files changed

+11
-12
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- 'main'
8+
- 'ddelnano/update-gha-oracle-runners'
89
schedule:
910
# Run at 23:09 PST (07:09 UTC) every sunday. Github suggests not running actions on the hour.
1011
- cron: '9 7 * * 0'

.github/workflows/codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: read
1111
jobs:
1212
analyze-go:
13-
runs-on: oracle-vm-16cpu-64gb-x86-64
13+
runs-on: oracle-16cpu-64gb-x86-64
1414
permissions:
1515
actions: read
1616
contents: read
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
category: "/language:go"
3030
analyze-python:
31-
runs-on: oracle-vm-8cpu-32gb-x86-64
31+
runs-on: oracle-8cpu-32gb-x86-64
3232
permissions:
3333
actions: read
3434
contents: read
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
category: "/language:python"
4444
analyze-javascript:
45-
runs-on: oracle-vm-8cpu-32gb-x86-64
45+
runs-on: oracle-8cpu-32gb-x86-64
4646
permissions:
4747
actions: read
4848
contents: read

.github/workflows/mirror_demos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
packages: write
12-
runs-on: oracle-vm-16cpu-64gb-x86-64
12+
runs-on: oracle-16cpu-64gb-x86-64
1313
steps:
1414
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v2
1515
with:

.github/workflows/mirror_deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
packages: write
12-
runs-on: oracle-vm-16cpu-64gb-x86-64
12+
runs-on: oracle-16cpu-64gb-x86-64
1313
steps:
1414
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v2
1515
with:

.github/workflows/mirror_releases.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
permissions:
1111
contents: read
1212
packages: write
13-
runs-on: oracle-vm-16cpu-64gb-x86-64
13+
runs-on: oracle-16cpu-64gb-x86-64
1414
steps:
1515
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v2
1616
with:

.github/workflows/pr_linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
image-base-name: "linter_image"
1515
run-container-lint:
16-
runs-on: oracle-vm-8cpu-32gb-x86-64
16+
runs-on: oracle-8cpu-32gb-x86-64
1717
needs: get-linter-image
1818
container:
1919
image: ${{ needs.get-linter-image.outputs.image-with-tag }}

.github/workflows/release_update_docs_px_dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
image-base-name: "dev_image_with_extras"
1414
generate-docs:
1515
needs: get-dev-image
16-
runs-on: oracle-vm-8cpu-32gb-x86-64
16+
runs-on: oracle-8cpu-32gb-x86-64
1717
container:
1818
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
1919
steps:

ci/bes.bazelrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
build --bes_results_url=https://app.buildbuddy.io/invocation/
22
build --bes_backend=grpcs://remote.buildbuddy.io
3-
build --remote_cache=grpcs://remote.buildbuddy.io
3+
# For now, our CI isn't using remote caching
4+
# build --remote_cache=grpcs://remote.buildbuddy.io

ci/github/bazelrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ common --color=yes
55
# a given run.
66
common --keep_going
77

8-
# Always use remote exec
9-
build --config=remote
10-
118
build --build_metadata=HOST=github-actions
129
build --build_metadata=USER=github-actions
1310
build --build_metadata=REPO_URL=https://github.com/pixie-io/pixie

0 commit comments

Comments
 (0)