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

ci: try to fix slurm podman tests by not building agent binary #9273

Merged
merged 2 commits into from
May 1, 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
7 changes: 1 addition & 6 deletions .circleci/real_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2704,10 +2704,6 @@ jobs:
condition:
equal: ["-A", <<parameters.agent-use>>]
steps:
- run:
name: Build agent resources
command: |
make -C agent build package
- wait-for-master:
scheme: <<parameters.master-scheme>>
host: <<parameters.master-host>>
Expand All @@ -2718,7 +2714,7 @@ jobs:
ZONE=$(terraform -chdir=tools/slurm/terraform output --raw zone)
INSTANCE_NAME=$(terraform -chdir=tools/slurm/terraform output --raw instance_name)
PROJECT=$(terraform -chdir=tools/slurm/terraform output --raw project)
gcloud compute scp agent/dist/determined-agent_linux_amd64_v1/determined-agent "$INSTANCE_NAME":~ --zone $ZONE
gcloud compute scp agent/build/determined-agent "$INSTANCE_NAME":~ --zone $ZONE
gcloud compute ssh --zone "$ZONE" "$INSTANCE_NAME" --project "$PROJECT" -- \
srun determined-agent --master-host=<<parameters.master-host>> --master-port=<<parameters.master-port>> --resource-pool=default --container-runtime=<<parameters.container-run-type>>
background: true
Expand Down Expand Up @@ -4430,7 +4426,6 @@ workflows:
extra-pytest-flags: ["-k 'not test_slurm_verify_home'"]
requires:
- build-go-ee
- build-proto

- test-e2e:
name: test-e2e-rbac
Expand Down
Loading