We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbdc985 commit 608d40bCopy full SHA for 608d40b
.github/workflows/daily-build.yml
@@ -39,7 +39,11 @@ jobs:
39
run: make test
40
41
- name: Build Project
42
- run: make build
+ run: |
43
+ echo "Path: ${PATH}"
44
+ echo "python: $(which python)"
45
+ echo "asdf: $(which asdf)"
46
+ make build
47
48
- name: Configure Management Credentials
49
uses: aws-actions/configure-aws-credentials@v4
Dockerfile.ci-build
@@ -7,7 +7,7 @@ RUN apt update && \
7
build-essential make libssl-dev zlib1g-dev libbz2-dev libreadline-dev \
8
libsqlite3-dev llvm libncursesw5-dev tk-dev libxml2-dev \
9
libxmlsec1-dev libffi-dev libicu70 liblzma-dev \
10
- python3 git curl wget sudo \
+ git curl wget sudo \
11
zip xz-utils tar unzip && \
12
apt clean && \
13
rm -rf /var/lib/apt/lists/*
0 commit comments