Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

build android with cache, win fixes #10546

Merged
merged 6 commits into from
Mar 30, 2019
Merged
Changes from 3 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
13 changes: 7 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,13 @@ test-linux:

build-android:
stage: build
image: parity/rust-android:gitlab-ci
image: parity/rust-parity-ethereum-android-build:stretch
variables:
CARGO_TARGET: armv7-linux-androideabi
<<: *docker-cache-status
<<: *collect_artifacts
script:
- scripts/gitlab/build-linux.sh
<<: *collect_artifacts
tags:
- linux-docker

Expand Down Expand Up @@ -150,12 +151,12 @@ build-darwin:
build-windows:
stage: build
<<: *collect_artifacts
only: *releaseable_branches
# only: *releaseable_branches
variables:
CARGO_TARGET: x86_64-pc-windows-msvc
CARGO_HOME: "C:/ci-cache/parity-ethereum/cargo/%CI_JOB_NAME%"
RUSTC_WRAPPER: sccache
SCCACHE_DIR: "C:/ci-cache/parity-ethereum/sccache"
CARGO_HOME: "C:/ci-cache/parity-ethereum/cargo/$CI_JOB_NAME"
# RUSTC_WRAPPER: sccache
# SCCACHE_DIR: "C:/ci-cache/parity-ethereum/sccache"
TriplEight marked this conversation as resolved.
Show resolved Hide resolved
script:
- sh scripts/gitlab/build-windows.sh
tags:
Expand Down