File tree Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 94
94
strategy :
95
95
matrix :
96
96
platform : ${{ fromJson(needs.get-platform.outputs.test-matrix) }}
97
+ name :
98
+ test ${{ matrix.name-extra }}
97
99
outputs :
98
100
HAS_SECRETS : ${{ env.HAS_SECRETS }}
99
101
container : ${{ matrix.platform.container }}
Original file line number Diff line number Diff line change 32
32
- linux+aarch64
33
33
needs : [get-projects]
34
34
uses : ./.github/workflows/build.yml
35
+ name : ${{ matrix.platform }}
35
36
with :
36
37
projects : ${{ needs.get-projects.outputs.diff || 'zlib.net^1.2' }}
37
38
platform : ${{ matrix.platform }}
Original file line number Diff line number Diff line change @@ -17,24 +17,23 @@ build:
17
17
freedesktop.org/pkg-config : ' *'
18
18
gnu.org/patch : ' *'
19
19
git-scm.org : ^2 # needed for fish's pcre
20
- script : |
20
+ script :
21
21
# By default, fish's fish_command_not_found handler will redirect to stderr,
22
22
# return an exit code of 127. Always. This patch fixes it. Hopefully, it will
23
23
# be merged upstream soon. https://github.com/fish-shell/fish-shell/pull/9517
24
+ - patch -p1 <props/command_not_found_handler.diff
24
25
25
- patch -p1 <props/command_not_found_handler.diff
26
-
27
- echo {{version}} >version
28
-
29
- mkdir build
30
- cd build
26
+ - echo {{version}} >version
31
27
32
- cmake .. $ARGS
33
- make install
28
+ - run : |
29
+ cmake .. $ARGS
30
+ make install
31
+ working-directory: build
34
32
35
- cd {{prefix}}/share/fish
36
- sed -i.bak -e "s| $TEA_PREFIX/| (tea --prefix)/|g" __fish_build_paths.fish
37
- rm __fish_build_paths.fish.bak
33
+ - run : |
34
+ sed -i.bak -e "s| $TEA_PREFIX/| \$TEA_PREFIX/|g" __fish_build_paths.fish
35
+ rm __fish_build_paths.fish.bak
36
+ working-directory: ${{prefix}}/share/fish
38
37
env :
39
38
ARGS :
40
39
- -DCMAKE_BUILD_TYPE=Release
You can’t perform that action at this time.
0 commit comments