Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc945d8

Browse files
committed
Updated linux and win with BuildExe Layout Setup
1 parent 08bf3ef commit fc945d8

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.github/workflows/linux_gcc_cmake_build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,21 @@ jobs:
6363
run: |
6464
cmake --build . --target run_buildcc_lib_bootstrap_linux_gcc --config Release
6565
66+
- name: BuildExe Layout setup
67+
working-directory: ${{github.workspace}}/..
68+
run: |
69+
mkdir buildcc_home
70+
export BUILDCC_HOME="${{github.workspace}}/../buildcc_home"
71+
echo $BUILDCC_HOME
72+
cd buildcc_home
73+
mkdir buildcc
74+
mkdir libs
75+
mkdir extensions
76+
6677
- name: BuildExe IM example tiny-process-library
6778
working-directory: ${{github.workspace}}/${{env.BUILD_FOLDER_DEV_ALL}}
6879
run: |
80+
echo $BUILDCC_HOME
6981
cmake --build . --target run_buildexe_im_tpl_linux_gcc --config Release
7082
7183
- name: CPack Release
@@ -200,9 +212,21 @@ jobs:
200212
run: |
201213
cmake --build . --target run_buildcc_lib_bootstrap_linux_gcc --config Release
202214
215+
- name: BuildExe Layout setup
216+
working-directory: ${{github.workspace}}/..
217+
run: |
218+
mkdir buildcc_home
219+
export BUILDCC_HOME="${{github.workspace}}/../buildcc_home"
220+
echo $BUILDCC_HOME
221+
cd buildcc_home
222+
mkdir buildcc
223+
mkdir libs
224+
mkdir extensions
225+
203226
- name: BuildExe IM example tiny-process-library
204227
working-directory: ${{github.workspace}}/${{env.BUILD_FOLDER_DEV_SINGLE}}
205228
run: |
229+
echo $BUILDCC_HOME
206230
cmake --build . --target run_buildexe_im_tpl_linux_gcc --config Release
207231
208232
# - name: TODO, BuildExe SM simple hyrid example

.github/workflows/win_cmake_build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,21 @@ jobs:
5555
run: |
5656
cmake --build . --config Release --target run_buildcc_lib_bootstrap_win_msvc --parallel 2
5757
58+
- name: BuildExe Layout setup
59+
working-directory: ${{github.workspace}}/..
60+
run: |
61+
mkdir buildcc_home
62+
$env:BUILDCC_HOME = "${{github.workspace}}/../buildcc_home"
63+
$env:BUILDCC_HOME
64+
cd buildcc_home
65+
mkdir buildcc
66+
mkdir libs
67+
mkdir extensions
68+
5869
- name: BuildExe IM example tiny-process-library
5970
working-directory: ${{github.workspace}}/${{env.BUILD_FOLDER_MSVC_DEV_ALL}}
6071
run: |
72+
$env:BUILDCC_HOME
6173
cmake --build . --config Release --target run_buildexe_im_tpl_win_msvc
6274
6375
# - name: TODO, BuildExe SM simple hyrid example

0 commit comments

Comments
 (0)