Skip to content

Commit 608d40b

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

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/daily-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ jobs:
3939
run: make test
4040

4141
- name: Build Project
42-
run: make build
42+
run: |
43+
echo "Path: ${PATH}"
44+
echo "python: $(which python)"
45+
echo "asdf: $(which asdf)"
46+
make build
4347
4448
- name: Configure Management Credentials
4549
uses: aws-actions/configure-aws-credentials@v4

Dockerfile.ci-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apt update && \
77
build-essential make libssl-dev zlib1g-dev libbz2-dev libreadline-dev \
88
libsqlite3-dev llvm libncursesw5-dev tk-dev libxml2-dev \
99
libxmlsec1-dev libffi-dev libicu70 liblzma-dev \
10-
python3 git curl wget sudo \
10+
git curl wget sudo \
1111
zip xz-utils tar unzip && \
1212
apt clean && \
1313
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)