git.delta.rocks / unique-network / refs/commits / f42743c8e537

difftreelog

Merge pull request #499 from UniqueNetwork/CI-40-int-test-parachain-mode-v1

kozyrevdev2022-08-16parents: #0908fa4 #6bc9f6e.patch.diff
in: master
Add timezone configuration step

2 files changed

modified.docker/Dockerfile-parachaindiffbeforeafterboth
--- a/.docker/Dockerfile-parachain
+++ b/.docker/Dockerfile-parachain
@@ -7,7 +7,8 @@
 ENV RUST_TOOLCHAIN $RUST_TOOLCHAIN
 ENV CARGO_HOME="/cargo-home"
 ENV PATH="/cargo-home/bin:$PATH"
-
+ENV TZ=UTC
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
 
 RUN apt-get update && \
     apt-get install -y curl cmake pkg-config libssl-dev git clang && \
modified.github/workflows/node_build_test.ymldiffbeforeafterboth
32 matrix:32 matrix:
33 include:33 include:
34 - network: "Opal"34 - network: "Opal"
35 features: " "35 features: "opal-runtime"
36 - network: "Quartz"36 - network: "Quartz"
37 features: "--features=quartz-runtime"37 features: "quartz-runtime"
38 - network: "Unique"38 - network: "Unique"
39 features: "--features=unique-runtime"39 features: "unique-runtime"
4040
41 steps:41 steps:
42 - name: Skip if pull request is in Draft42 - name: Skip if pull request is in Draft