Skip to content

Commit eeecccb

Browse files
author
Fabiana Severin
committed
Checking build on codebuild
1 parent 0cae97e commit eeecccb

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/build-and-release.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ jobs:
1616
outputs:
1717
version: ${{ steps.version.outputs.version }}
1818
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+
1927
- uses: actions/checkout@v4
2028

2129
- name: Setup Node.js
@@ -39,7 +47,10 @@ jobs:
3947
key: native-deps-${{ runner.os }}-${{ hashFiles('deps/versions', 'binding.gyp') }}
4048

4149
- name: Install build dependencies
42-
run: yum install -y cmake make gcc-c++
50+
run: |
51+
echo "Installing build dependencies..."
52+
yum install -y cmake make gcc-c++
53+
echo "Build dependencies installed"
4354
4455
- name: Clean build directories
4556
run: rm -rf deps/*/build

0 commit comments

Comments
 (0)