Commit df33e07 1 parent aba351c commit df33e07 Copy full SHA for df33e07
File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,19 +28,20 @@ jobs:
28
28
id : buildoutput
29
29
run : echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
30
30
31
- - name : CD into build directory
32
- run : cd build
33
-
34
31
- name : Configure CMake
35
- run : cmake --preset=release-noplugins ${{ github.workspace }}
32
+ working-directory : ${{ steps.buildoutput.outputs.build-output-dir }}
33
+ run : cmake --preset=release-noplugins ..
36
34
37
35
- name : Build libheif
36
+ working-directory : ${{ steps.buildoutput.outputs.build-output-dir }}
38
37
run : make -j$(grep -c processor /proc/cpuinfo)
39
38
40
39
- name : " [Debug] List build directory contents again"
40
+ working-directory : ${{ steps.buildoutput.outputs.build-output-dir }}
41
41
run : ls -lah
42
42
43
43
- name : " [Debug] List libheif directory"
44
+ working-directory : ${{ steps.buildoutput.outputs.build-output-dir }}
44
45
run : ls -lah ./libheif
45
46
46
47
- name : Archive and put a pretty bow on it
You can’t perform that action at this time.
0 commit comments