Skip to content

Commit 2369e29

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

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/daily-build.yml

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

30-
- name: Setup Python environment
30+
- name: Setup environment
3131
run: |
32+
echo "${HOME}/.asdf/bin" >> $GITHUB_PATH
3233
poetry install --no-root
33-
source $(poetry env info --path)/bin/activate
3434
3535
- name: Run Linting
3636
run: make lint
@@ -39,7 +39,13 @@ jobs:
3939
run: make test
4040

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

0 commit comments

Comments
 (0)