Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ec7e883

Browse files
General-Becks3krit
authored andcommittedFeb 5, 2020
gcc to clang (#11453)
* gcc to clang test ``` export CC="sccache "$CC export CXX="sccache "$CXX ``` darwin build ``` CC=clang CXX=clang ``` * darwin - > default clang
1 parent 8176dff commit ec7e883

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎.gitlab-ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,6 @@ build-darwin:
165165
variables:
166166
CARGO_TARGET: x86_64-apple-darwin
167167
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
168-
CC: gcc
169-
CXX: g++
170168
script:
171169
- scripts/gitlab/build-linux.sh
172170
tags:

‎scripts/gitlab/test-linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ echo "________Running test-linux.sh________"
55
set -e # fail on any error
66
set -u # treat unset variables as error
77

8-
export CC="sccache gcc"
9-
export CXX="sccache g++"
8+
export CC="sccache "$CC
9+
export CXX="sccache "$CXX
1010
FEATURES="json-tests"
1111

1212
OPTIONS="--release"

0 commit comments

Comments
 (0)
This repository has been archived.