Skip to content

Commit e159e67

Browse files
committed
Add informational/debug pre-step.
1 parent ca7b8af commit e159e67

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/cpp_b2.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ env:
1212
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
1313

1414
jobs:
15+
debug:
16+
runs-on: ubuntu-latest
17+
name: Debug Information
18+
steps:
19+
- name: Information
20+
run: |
21+
set -x
22+
uname -a
23+
docker ps
24+
1525
cpp-matrix:
1626
runs-on: ubuntu-latest
1727
name: Generate Test Matrix
@@ -61,11 +71,9 @@ jobs:
6171
if: ${{ matrix.container.volumes }}
6272
run: |
6373
set -x
64-
uname -a
6574
apt-get update
66-
apt-get install -y curl xz-utils docker-ce docker-ce-cli
67-
docker ps
68-
curl -LO https://nodejs.org/dist/v24.13.0/node-v24.13.0-linux-x64.tar.xz
75+
apt-get install -y curl xz-utils
76+
curl -LO https://unofficial-builds.nodejs.org/download/release/v24.14.0/node-v24.14.0-linux-x64-musl.tar.xz
6977
ls -laF /
7078
tar -xf node-v24.13.0-linux-x64.tar.xz --strip-components 1 -C /node24
7179
ldd /node24/bin/node

0 commit comments

Comments
 (0)