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: ...@@ -214,7 +214,7 @@ jobs:
path: source path: source
fetch-depth: 0 fetch-depth: 0
- name: Set up build environment - 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 shell: bash
if: matrix.platform.setup-script != '' if: matrix.platform.setup-script != ''
- name: Setup QEMU - name: Setup QEMU
......
...@@ -271,7 +271,7 @@ jobs: ...@@ -271,7 +271,7 @@ jobs:
path: source path: source
fetch-depth: 0 fetch-depth: 0
- name: Set up build environment - 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 shell: bash
if: matrix.platform.setup-script != '' if: matrix.platform.setup-script != ''
- name: Setup QEMU - name: Setup QEMU
......
#!/bin/sh -e #!/bin/sh
set -ex
echo "##############################################################################" echo "##############################################################################"
echo "## Downloading mingw" echo "## Downloading mingw"
......
#!/bin/sh #!/bin/sh
set -x set -ex
brew update brew update
brew install pkgconfig zlib curl openssl libssh2 ninja 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