Reformat setup_ci command line.
This prevents setup_ci from running twice on Cygwin due to different parsing of the command line since on Windows it's run via Powershell.
This commit is contained in:
@@ -140,8 +140,7 @@ jobs:
|
||||
- uses: actions/checkout@main
|
||||
- name: setup CI system
|
||||
run: |
|
||||
timeout 1200 sh .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }} || \
|
||||
sh .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }}
|
||||
sh -c "timeout 1200 .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }} || .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }}"
|
||||
env:
|
||||
CYGWIN_SETUP: ${{ steps.cygwin_install.outputs.setup }}
|
||||
- name: autoreconf
|
||||
|
||||
Reference in New Issue
Block a user