Closed ChameleonTartu closed 4 years ago
Hi @ChameleonTartu - can you share the config.yml
that you were using please? In particular, what docker image are you using for the job?
@marcomorain
My .circleci/config.yml
looks:
version: 2.1
orbs:
python: circleci/python@0.3.0
jobs:
build-and-test:
executor:
name: python/default
tag: '3.7'
steps:
- checkout
- python/load-cache
- python/install-deps
- python/save-cache
- run:
name: Run Python tests
command: |
python tests/run.py
workflows:
# The build-and-test we will run EVERYTIME a piece of code changes
build-and-test-workflow:
jobs:
- build-and-test
As far as I checked this orb depends on the cimg/python
docker image.
@ChameleonTartu Hello, we updated the build-agent for fixing this issue.
We added -c quotePath=false
option to checkout files with the Unicode filename.
https://git-scm.com/docs/git-config#Documentation/git-config.txt-corequotePath
You can update your build-agent version to run the following command.
circleci update build-agent
Do you want to request a feature or report a bug? Bug
What is the current behavior? When a file name contains utf-8 symbol local run of CircleCI
circleci local execute --job example
fails.Can you provide an example?
The name of the file is exømple.py
Example output:
What is the expected behavior? It should work as a CircleCI server build which ignores the nature of symbols and doesn't fail.
Which version of the CLI and OS are you using? Did this work in previous versions?
~OS~: