Skip to content

Commit 8099118

Browse files
committed
[NRL-1179] WIP Add some debug into build workflow
1 parent dbdc985 commit 8099118

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/daily-build.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ jobs:
2727
with:
2828
ref: ${{ github.ref }}
2929

30-
- name: Setup Python environment
30+
- name: Setup environment
3131
run: |
3232
poetry install --no-root
3333
source $(poetry env info --path)/bin/activate
34+
source ${HOME}/.asdf/asdf.sh
3435
3536
- name: Run Linting
3637
run: make lint
@@ -39,7 +40,13 @@ jobs:
3940
run: make test
4041

4142
- name: Build Project
42-
run: make build
43+
run: |
44+
echo "PATH: ${PATH}"
45+
echo "HOME: ${HOME}"
46+
echo "python: $(which python)"
47+
echo "asdf: $(which asdf)"
48+
echo "/usr/local/bin: $(ls -la /usr/local/bin)"
49+
make build
4350
4451
- name: Configure Management Credentials
4552
uses: aws-actions/configure-aws-credentials@v4

0 commit comments

Comments
 (0)