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

gcc to clang #11453

Merged
merged 2 commits into from
Feb 5, 2020
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
2 changes: 0 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,6 @@ build-darwin:
variables:
CARGO_TARGET: x86_64-apple-darwin
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
CC: gcc
CXX: g++
script:
- scripts/gitlab/build-linux.sh
tags:
Expand Down
4 changes: 2 additions & 2 deletions scripts/gitlab/test-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ echo "________Running test-linux.sh________"
set -e # fail on any error
set -u # treat unset variables as error

export CC="sccache gcc"
export CXX="sccache g++"
export CC="sccache "$CC
export CXX="sccache "$CXX
FEATURES="json-tests"

OPTIONS="--release"
Expand Down