File tree 1 file changed +7
-4
lines changed 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 42
42
run : echo "CMAKE_BUILD_PARALLEL_LEVEL=$(sysctl -n hw.logicalcpu)" >> $GITHUB_ENV
43
43
44
44
- name : Configure CMake
45
- run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
45
+ run : |
46
+ cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
47
+ -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/dist/arm-webos-linux-gnueabi_sdk-buildroot
46
48
env :
47
49
CC : ' /opt/local/bin/gcc'
48
50
CXX : ' /opt/local/bin/g++'
@@ -51,11 +53,12 @@ jobs:
51
53
run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
52
54
53
55
- name : Install
54
- run : cmake --install ${{github.workspace}}/build --prefix ${{github.workspace}}/build/dist/arm-webos-linux-gnueabi_sdk-buildroot
56
+ run : cmake --install ${{github.workspace}}/build
55
57
56
58
- name : Make Tarball
57
- run : cmake -E tar cjvf arm-webos-linux-gnueabi_sdk-buildroot_darwin-x86_64.tar.bz2 \
58
- arm-webos-linux-gnueabi_sdk-buildroot
59
+ run : |
60
+ cmake -E tar cjvf arm-webos-linux-gnueabi_sdk-buildroot_darwin-x86_64.tar.bz2 \
61
+ arm-webos-linux-gnueabi_sdk-buildroot
59
62
working-directory : ${{github.workspace}}/build/dist
60
63
61
64
- name : Create Release
You can’t perform that action at this time.
0 commit comments