client/http: More coro conversion #466
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSYS2 CI | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
env: | |
BUILD_TYPE: Release | |
INSTALL_LOCATION: .local | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
boost_version: [1.81.0, 1.82.0, 1.83.0, 1.84.0, 1.85.0, 1.86.0] | |
shared: [OFF] | |
malloy_tls: [ON, OFF] | |
runs-on: windows-latest | |
env: | |
Boost_ROOT: ${{github.workspace}}/3rdparty/boost-${{ matrix.boost_version }} | |
name: "msys2/mingw (boost v${{ matrix.boost_version }}) (tls: ${{ matrix.malloy_tls }}) (shared: ${{ matrix.shared }})" | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: false | |
install: >- | |
base-devel | |
mingw-w64-x86_64-toolchain | |
mingw-w64-x86_64-cmake | |
p7zip | |
- uses: actions/checkout@v4 | |
- name: cache boost | |
uses: actions/cache@v4 | |
id: cache-boost | |
with: | |
path: ${{ env.Boost_ROOT }} | |
key: boost-${{ matrix.boost_version }} | |
- name: Setup boost env | |
run: | | |
BOOST_URL="https://boostorg.jfrog.io/artifactory/main/release/${{ matrix.boost_version }}/source/boost_$(echo ${{ matrix.boost_version }} | sed 's/\./_/g').tar.bz2" | |
echo "BOOST_URL=$BOOST_URL" >> $GITHUB_ENV | |
- name: Install Boost | |
if: steps.cache-boost.outputs.cache-hit != 'true' | |
run: | | |
# This sed magic does two things: | |
# 1. Replaces backslashes with forward slashes | |
# 2. Replaces windows drive paths (e.g. D:) with msys paths (e.g. /d) | |
Boost_ROOT=$(echo $Boost_ROOT | sed 's/\\/\//g' | sed 's/\([A-Z]\):/\/\L\1/g') | |
echo "Boost_ROOT=$Boost_ROOT" >> $GITHUB_ENV | |
echo "BOOST ROOT: ${Boost_ROOT}" | |
mkdir -p $Boost_ROOT | |
curl --progress-bar --location --output $Boost_ROOT/download.tar.bz2 $BOOST_URL | |
7z -o$Boost_ROOT x $Boost_ROOT/download.tar.bz2 -y -bd | |
7z -o$Boost_ROOT x $Boost_ROOT/download.tar -y -bd | |
cd $Boost_ROOT && cp -r boost_*/* . | |
rm -rf boost_*/* download.tar.bz2 download.tar | |
- name: Configure | |
run: cmake -Bbuild -G"MSYS Makefiles" -DMALLOY_BUILD_EXAMPLES=ON -DMALLOY_BUILD_TESTS=ON -DMALLOY_FEATURE_TLS=${{ matrix.malloy_tls }} -DMALLOY_DEPENDENCY_SPDLOG_DOWNLOAD=ON -DMALLOY_BUILD_SHARED=${{ matrix.shared }} | |
- name: Build | |
run: cmake --build build | |
- name: Run tests | |
run: ./build/bin/malloy-tests |