Skip to content

Commit

Permalink
Wrap some long workflow lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Jan 6, 2025
1 parent 542e352 commit d725d6a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/clang.ys
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,14 @@ jobs:
#----------------------------------------------------------------------------
clang_extended:
:: setup-job('clang')
name: extended/${{matrix.cxx}}/c++${{matrix.std}}/${{matrix.bt}}/vg${{matrix.vg}}
name: "extended/${{matrix.cxx}}/c++${{matrix.std}}/\
${{matrix.bt}}/vg${{matrix.vg}}"
:: runs-on-docker-c4core('${{matrix.img}}')
strategy:
fail-fast: false
matrix:
item =: \({:std 11, :cxx "clang++-$a(%1)", :bt %2, :vg 'on', :img "$a(%3)"})
item =: \({:std 11, :cxx "clang++-$a(%1)"
:bt %2, :vg 'on', :img "$a(%3)"})
include:
- ! item(17 'Debug' '22.04')
- ! item(17 'Release' '22.04')
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/gcc.ys
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
item =: \({:std %1, :cxx "g++-$a(%2)", :bt %3, :bitlinks 'shared64 static32', :img "$a(%4)"})
item =: \({:std %1, :cxx "g++-$a(%2)", :bt %3
:bitlinks 'shared64 static32', :img "$a(%4)"})
include: &include1
- ! item(11 14 'Debug' '22.04')
- ! item(11 14 'Release' '22.04')
Expand Down Expand Up @@ -68,7 +69,8 @@ jobs:
strategy:
fail-fast: false
matrix:
item =: \({:std %1, :cxx "g++-$a(%2)", :bt %3, :bitlinks 'shared64 static32', :img "$a(%4)"})
item =: \({:std %1, :cxx "g++-$a(%2)", :bt %3
:bitlinks 'shared64 static32', :img "$a(%4)"})
include:
- ! item(11 5 'Debug' '18.04')
- ! item(11 5 'Release' '18.04')
Expand Down Expand Up @@ -127,7 +129,8 @@ jobs:
#----------------------------------------------------------------------------
gccsan:
:: setup-job('gcc')
name: gccsan/${{matrix.cxx}}/c++${{matrix.std}}/${{matrix.bt}}/vg${{matrix.vg}}
name: "gccsan/${{matrix.cxx}}/c++${{matrix.std}}/\
${{matrix.bt}}/vg${{matrix.vg}}"
:: runs-on-docker-c4core('22.04')
strategy:
fail-fast: false
Expand Down

0 comments on commit d725d6a

Please sign in to comment.