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

added repo-profiler.pem file to test env #61

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ENV SERVER_URL=$SERVER_URL

COPY ./vibi-dpu/target/debug/vibi-dpu /app/vibi-dpu
COPY ./pubsub-sa.json /app/pubsub-sa.json
COPY ./repo-profiler.pem /app/repo-profiler.pem

# Start the Rust application
CMD ["/app/vibi-dpu"]
4 changes: 4 additions & 0 deletions cloudbuild-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ steps:
# Fetch the credentials from the GCP bucket
- name: 'gcr.io/cloud-builders/gsutil'
args: ['cp', 'gs://vibi-test-secrets/pubsub-sa-test.json', 'pubsub-sa.json']

- name: 'gcr.io/cloud-builders/gsutil'
args: ['cp', 'gs://vibi-test-secrets/repo-profiler-test.pem', 'repo-profiler.pem']


# Perform cargo build inside vibi-dpu directory
- name: 'rust:latest'
Expand Down