From db121e0cd20d5f835333001eb0fc8f3a4fae248f Mon Sep 17 00:00:00 2001 From: Pierre Date: Tue, 12 Jan 2021 14:27:00 +0100 Subject: [PATCH] :construction_worker: simplify config .yml --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 189d176..fb0b1df 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 # use CircleCI 2.0 jobs: # A basic unit of work in a run build: # runs not using Workflows must have a `build` job as entry point # directory where steps are run - working_directory: ~/circleci-demo-python-django + # working_directory: ~/circleci-demo-python-django docker: # run the steps with Docker # CircleCI Python images available at: https://hub.docker.com/r/circleci/python/ - image: circleci/python:3.8.5 @@ -22,8 +22,8 @@ jobs: # A basic unit of work in a run POSTGRES_DB: circle_test steps: # steps that comprise the `build` job - checkout # check out source code to working directory - - run: sudo chown -R circleci:circleci /usr/local/bin - - run: sudo chown -R circleci:circleci /usr/local/lib/python3.8/site-packages + # - run: sudo chown -R circleci:circleci /usr/local/bin + # - run: sudo chown -R circleci:circleci /usr/local/lib/python3.8/site-packages - restore_cache: # Read about caching dependencies: https://circleci.com/docs/2.0/caching/ key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}