Commit 8327c29 1 parent ee42102 commit 8327c29 Copy full SHA for 8327c29
File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 48
48
steps :
49
49
- uses : actions/checkout@v4
50
50
51
+ # Necessary due to https://github.com/actions/runner/issues/2058
52
+ - name : Save workspace to environment
53
+ run : echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE" >> $GITHUB_ENV
54
+
51
55
- name : Update package cache
52
56
run : apt update -y
53
57
66
70
id : strings
67
71
shell : bash
68
72
run : |
69
- echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
73
+ echo "build-output-dir=${{ env.GITHUB_WORKSPACE }}/build" >> "$GITHUB_OUTPUT"
70
74
71
75
- name : Configure CMake
72
76
run : >
76
80
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
77
81
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
78
82
-DSPICY_PROTOBUF_TEST=ON
79
- -S ${{ github.workspace }}
83
+ -S ${{ env.GITHUB_WORKSPACE }}
80
84
81
85
- name : Build
82
86
run : cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
You can’t perform that action at this time.
0 commit comments