Skip to content

Commit

Permalink
Remove credential-helper
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Apr 11, 2024
1 parent 766559f commit 8beae62
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ env:
LS_LOG: trace
parameter-store:
LOCALSTACK_AUTH_TOKEN: /CodeBuild/LOCALSTACK_AUTH_TOKEN
git-credential-helper: yes

phases:
install:
runtime-versions:
python: 3.11
commands:
- test -d /root/.pyenv/versions/3.9.16/bin || pyenv install 3.9.16
- pyenv install 3.9.16
- pyenv global 3.9.16
- pip install -r requirements-dev.txt
- pip install localstack
Expand All @@ -42,7 +41,15 @@ phases:
- pytest tests
finally:
- localstack logs
- ls -la /root/.pyenv/versions/
- ls -la /root/.pyenv/versions/3.9.16
- ls -la /root/.pyenv/versions/3.9.16/bin
- ls -la /root/.pyenv/versions/3.9.16/include
- ls -la /root/.pyenv/versions/3.9.16/lib
- ls -la /root/.pyenv/versions/3.9.16/share

cache:
paths:
- /root/.pyenv/versions/3.9.16
- /root/.pyenv/versions/3.9.16/
- /root/.pyenv/versions/3.9.16/**/*

0 comments on commit 8beae62

Please sign in to comment.