Commit cfdf36f9 by Edward Thomson

ci: rename build setup scripts

Rename our build setup scripts to include the `build` name so that we
can add additional CI setup scripts with no ambiguity.
parent 1327dbcf
......@@ -214,7 +214,7 @@ jobs:
path: source
fetch-depth: 0
- name: Set up build environment
run: source/ci/setup-${{ matrix.platform.setup-script }}.sh
run: source/ci/setup-${{ matrix.platform.setup-script }}-build.sh
shell: bash
if: matrix.platform.setup-script != ''
- name: Setup QEMU
......
......@@ -271,7 +271,7 @@ jobs:
path: source
fetch-depth: 0
- name: Set up build environment
run: source/ci/setup-${{ matrix.platform.setup-script }}.sh
run: source/ci/setup-${{ matrix.platform.setup-script }}-build.sh
shell: bash
if: matrix.platform.setup-script != ''
- name: Setup QEMU
......
#!/bin/sh -e
#!/bin/sh
set -ex
echo "##############################################################################"
echo "## Downloading mingw"
......
#!/bin/sh
set -x
set -ex
brew update
brew install pkgconfig zlib curl openssl libssh2 ninja
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment