Skip to content

Commit

Permalink
Merge pull request #226 from arcondello/xcode-12.5.1
Browse files Browse the repository at this point in the history
Use xcode 12.5.1
  • Loading branch information
arcondello authored Dec 19, 2022
2 parents 5876bed + 6582f2e commit bb6a7c9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

coverage-osx:
macos:
xcode: "12.2.0"
xcode: "12.5.1"
environment:
HOMEBREW_NO_AUTO_UPDATE: 1
PYTHON: 3.8.6
Expand All @@ -100,22 +100,25 @@ jobs:
- run:
name: install pyenv
command: |
brew install pyenv
git clone https://github.com/pyenv/pyenv.git ~/.pyenv --branch v2.3.4
echo '' >> ~/.bash_profile
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
- restore_cache:
keys:
- v2-pyenv-{{ .Environment.CIRCLE_JOB }}-xcode-12.2.0
- v2-pyenv-{{ .Environment.CIRCLE_JOB }}-xcode-12.5.1
- run:
name: install python
command: |
pyenv install $PYTHON -s
- save_cache:
paths:
- ~/.pyenv
key: v2-pyenv-{{ .Environment.CIRCLE_JOB }}-xcode-12.2.0
key: v2-pyenv-{{ .Environment.CIRCLE_JOB }}-xcode-12.5.1
- run:
name: create virtualenv
command: |
eval "$(pyenv init -)"
pyenv local $PYTHON
python -m pip install virtualenv
python -m virtualenv env
Expand Down

0 comments on commit bb6a7c9

Please sign in to comment.