fix: support homebrew/linuxbrew (AppleClang, GCC 11) #1
Workflow file for this run
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: Brew tests impl | ||
on: | ||
workflow_call: | ||
jobs: | ||
build_linuxbrew: | ||
name: Build on linxbrew | ||
runs-on: ubuntu-latest | ||
container: | ||
image: homebrew/brew:latest | ||
steps: | ||
- name: Checkout mamba repository | ||
uses: actions/checkout@v1 | ||
- name: Install prerequisites | ||
run: brew install fmt libarchive libsolv lz4 openssl@3 reproc simdjson xz yaml-cpp zstd cmake cli11 nlohmann-json spdlog tl-expected curl pkgconfig python | ||
- run: | | ||
whoami | ||
ls -la | ||
- name: Configure | ||
run: cmake -S. -Bbuild -DBUILD_LIBMAMBA=ON -DBUILD_MAMBA=ON -DBUILD_SHARED=ON -DBUILD_STATIC=OFF | ||
- name: Build | ||
run: cmake --build build -j4 |