Skip to content

Commit

Permalink
build: use newer xCode image (#25571)
Browse files Browse the repository at this point in the history
* build: use newer xCode image

* build: log changed file paths

Co-authored-by: Samuel Attard <sattard@slack-corp.com>
Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com>
  • Loading branch information
3 people committed Sep 22, 2020
1 parent 8bdff7a commit 07ec50b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -85,17 +85,17 @@ machine-linux-2xlarge: &machine-linux-2xlarge

machine-mac: &machine-mac
macos:
xcode: "11.5.0"
xcode: "12.2.0"

machine-mac-large: &machine-mac-large
resource_class: large
macos:
xcode: "11.5.0"
xcode: "12.2.0"

machine-mac-large-arm: &machine-mac-large-arm
resource_class: large
macos:
xcode: "12.0.0-large"
xcode: "12.2.0"

# Build configurations options.
env-testing-build: &env-testing-build
Expand Down
2 changes: 2 additions & 0 deletions script/doc-only-change.js
Expand Up @@ -34,6 +34,8 @@ async function checkIfDocOnlyChange () {
owner: 'electron', repo: 'electron', pull_number: pullRequestNumber
});

console.log('Changed Files:', filesChanged.data.map(fileInfo => fileInfo.filename));

const nonDocChange = filesChanged.data.find((fileInfo) => {
const fileDirs = fileInfo.filename.split('/');
if (fileDirs[0] !== 'docs') {
Expand Down

0 comments on commit 07ec50b

Please sign in to comment.