File tree 1 file changed +5
-8
lines changed
1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -58,24 +58,21 @@ jobs:
58
58
apt -y update
59
59
apt -y install ${{ matrix.install }}
60
60
61
- - name : make build dir
62
- run : cmake -E make_directory ${{runner.workspace}}/build
63
-
64
61
- name : configure cmake
65
62
env :
66
- TOOLCHAIN : ${{ matrix.toolchain && format('{0} /toolchains/{1}', github.workspace , matrix.toolchain) || '' }}
67
- run : cmake ${{matrix.cmake_opts}} -DCMAKE_TOOLCHAIN_FILE="${TOOLCHAIN}" -S ${{ github.workspace }} -B ${{github.workspace}} /build
63
+ TOOLCHAIN : ${{ matrix.toolchain && format('. /toolchains/{1}', matrix.toolchain) || '' }}
64
+ run : cmake ${{matrix.cmake_opts}} -DCMAKE_TOOLCHAIN_FILE="${TOOLCHAIN}" -S . -B . /build
68
65
69
66
- name : build ziti-edge-tunnel bundle target
70
- run : cmake --build ${{github.workspace}} /build --target bundle --verbose
67
+ run : cmake --build . /build --target bundle --verbose
71
68
72
69
- name : list bundle artifacts
73
70
run : ls -R
74
- working-directory : ${{ github.workspace }} /build/bundle/
71
+ working-directory : . /build/bundle/
75
72
76
73
- name : list program artifacts
77
74
run : ls -R
78
- working-directory : ${{ github.workspace }} /build/programs/ziti-edge-tunnel/
75
+ working-directory : . /build/programs/ziti-edge-tunnel/
79
76
80
77
- name : upload bundle artifacts
81
78
uses : actions/upload-artifact@v3
You can’t perform that action at this time.
0 commit comments