Skip to content

Commit

Permalink
ci: adjust timezone (#302)
Browse files Browse the repository at this point in the history
This is to make the output of the CI consistent with the environment in
which experiments run. It's now set to match:
https://github.com/google/oss-fuzz-gen/blob/68c69a0ef888003371a12cb65b2ba5e27bc1a767/Dockerfile#L41

Otherwise we run into inconsistencies where e.g.
google/oss-fuzz-gen#300 reports:

```sh
Step #1: PR: google/oss-fuzz-gen#300
Step #1: JOB: https://console.cloud.google.com/kubernetes/job/us-central1-c/llm-experiment/default/ofg-pr-300-dk
Step #1: REPORT: https://llm-exp.oss-fuzz.com/Result-reports/ofg-pr/2024-05-28-300-dk-comparison/index.html
Step #1: BUCKET: https://console.cloud.google.com/storage/browser/oss-fuzz-gcb-experiment-run-logs/Result-reports/ofg-pr/2024-05-28-300-dk-comparison
Step #1: BUCKET GS: `gs://oss-fuzz-gcb-experiment-run-logs/Result-reports/ofg-pr/2024-05-28-300-dk-comparison`
```

The actual URLs are on "...2024-05-29..." e.g.
https://llm-exp.oss-fuzz.com/Result-reports/ofg-pr/2024-05-29-300-dk-comparison/index.html
  • Loading branch information
DavidKorczynski committed May 31, 2024
1 parent 68c69a0 commit 11b2cc1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM debian:12

ENV DEBIAN_FRONTEND interactive

# Set the same timezone as the main Dockerfile
ENV TZ='Australia/Sydney'

# Install packages used by the Experiment. Python and Git are required for the experiment.
# Curl, certs, and gnupg are required to install gcloud.
RUN apt-get update && \
Expand Down

0 comments on commit 11b2cc1

Please sign in to comment.