Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fork based PR system-test #263

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/system-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ permissions:
jobs:
system-test:
runs-on:
group: Large Runner Shared Public
group: Large Runner Shared Public
labels: ubuntu-8-core-latest
services:
dd-agent:
image: gcr.io/datadoghq/agent:7
image: ${{ (! github.event.pull_request.head.repo.fork ) && 'gcr.io/datadoghq/agent:7' || '' }}
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
DD_TRACE_DEBUG: 1
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
gcr.io:443
repo.maven.apache.org:443
*.datadoghq.com:443

- name: Checkout Git Repo
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab

Expand All @@ -58,12 +58,12 @@ jobs:
wait: 5m
env:
KUBECONFIG: ./test/setup/.kube-config

- name: Create K8s resources
run: make local-cluster-resource-deploy
env:
KUBECONFIG: ./test/setup/.kube-config

- name: Setup Golang
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
Expand All @@ -72,4 +72,4 @@ jobs:
- name: Run integration Tests
run: make system-test
env:
KIND_KUBECONFIG: .kube-config
KIND_KUBECONFIG: .kube-config
Loading