File tree Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change 10
10
build-linux :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - name : Checkout repository (with submodules)
14
+ uses : actions/checkout@v3
14
15
with :
15
16
submodules : recursive
16
17
19
20
sudo apt update
20
21
sudo apt install -y cmake clang ninja-build git libftdi1-dev libusb-1.0-0-dev pkg-config
21
22
23
+ - name : Print environment info (for debugging)
24
+ run : |
25
+ echo "CC=$CC"
26
+ echo "CXX=$CXX"
27
+ clang --version
28
+ cmake --version
29
+ ninja --version
30
+ pwd && ls -al
31
+
22
32
- name : Configure CMake
23
33
run : |
24
34
mkdir _build
@@ -30,11 +40,17 @@ jobs:
30
40
cd _build
31
41
ninja
32
42
43
+ - name : List build output (for debugging)
44
+ run : |
45
+ echo "::group::Build Output"
46
+ find _build -type f
47
+ echo "::endgroup::"
48
+
33
49
- name : Upload artifact
34
50
uses : actions/upload-artifact@v3
35
51
with :
36
52
name : ectool-linux
37
- path : _build/src/ectool
53
+ path : _build/src/core/ ectool
38
54
39
55
build-windows :
40
56
runs-on : windows-2022
59
75
with :
60
76
name : ectool-windows
61
77
path : |
62
- _build/src/RelWithDebInfo/ectool.exe
63
- _build/src/RelWithDebInfo/ectool.pdb
78
+ _build/src/core/ RelWithDebInfo/ectool.exe
79
+ _build/src/core/ RelWithDebInfo/ectool.pdb
You can’t perform that action at this time.
0 commit comments