From f42743c8e5375d2f36a52281fc060f36acfef0f2 Mon Sep 17 00:00:00 2001 From: kozyrevdev <73348153+kozyrevdev@users.noreply.github.com> Date: Tue, 16 Aug 2022 07:31:05 +0000 Subject: [PATCH] Merge pull request #499 from UniqueNetwork/CI-40-int-test-parachain-mode-v1 Add timezone configuration step --- --- 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 && \ --- a/.github/workflows/node_build_test.yml +++ b/.github/workflows/node_build_test.yml @@ -32,11 +32,11 @@ matrix: include: - network: "Opal" - features: " " + features: "opal-runtime" - network: "Quartz" - features: "--features=quartz-runtime" + features: "quartz-runtime" - network: "Unique" - features: "--features=unique-runtime" + features: "unique-runtime" steps: - name: Skip if pull request is in Draft -- gitstuff