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 0cae97e commit eeecccbCopy full SHA for eeecccb
.github/workflows/build-and-release.yml
@@ -16,6 +16,14 @@ jobs:
16
outputs:
17
version: ${{ steps.version.outputs.version }}
18
steps:
19
+ - name: Debug runner info
20
+ run: |
21
+ echo "Runner started successfully"
22
+ whoami
23
+ pwd
24
+ uname -a
25
+ cat /etc/os-release || echo "No os-release file"
26
+
27
- uses: actions/checkout@v4
28
29
- name: Setup Node.js
@@ -39,7 +47,10 @@ jobs:
39
47
key: native-deps-${{ runner.os }}-${{ hashFiles('deps/versions', 'binding.gyp') }}
40
48
41
49
- name: Install build dependencies
42
- run: yum install -y cmake make gcc-c++
50
51
+ echo "Installing build dependencies..."
52
+ yum install -y cmake make gcc-c++
53
+ echo "Build dependencies installed"
43
54
44
55
- name: Clean build directories
45
56
run: rm -rf deps/*/build
0 commit comments