Fix Rocket decompression and make this compile with Visual Studio 2019. #51
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: ci-macos | |
on: | |
push: | |
paths: | |
- '**' | |
- '!COPYING' | |
- '!COPYING-asm' | |
- '!INSTALL' | |
- '!**.md' | |
- '!.clang*' | |
- '!.gitignore' | |
- '!.gitattributes' | |
- '!.github/workflows/*' | |
- '.github/workflows/ci-macos.yml' | |
pull_request: | |
paths: | |
- '**' | |
- '!COPYING' | |
- '!COPYING-asm' | |
- '!INSTALL' | |
- '!**.md' | |
- '!.clang*' | |
- '!.gitignore' | |
- '!.gitattributes' | |
- '!.github/workflows/*' | |
- '.github/workflows/ci-macos.yml' | |
jobs: | |
ci-macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
generator: [make, ninja, xcode] | |
include: | |
- generator: make | |
cmake_generator: "Unix Makefiles" | |
- generator: ninja | |
cmake_generator: "Ninja" | |
- generator: xcode | |
cmake_generator: "Xcode" | |
steps: | |
- name: Install dependencies | |
run: | | |
brew install boost make ninja | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Configure | |
run: | | |
export LDFLAGS="-L$(brew --prefix boost)/lib $LDFLAGS" | |
export CFLAGS="-I$(brew --prefix boost)/include $CFLAGS" | |
export CXXFLAGS="-I$(brew --prefix boost)/include $CXXFLAGS" | |
cmake -S . -B build -G "${{ matrix.cmake_generator }}" | |
- name: Build | |
run: | | |
export LDFLAGS="-L$(brew --prefix boost)/lib $LDFLAGS" | |
export CFLAGS="-I$(brew --prefix boost)/include $CFLAGS" | |
export CXXFLAGS="-I$(brew --prefix boost)/include $CXXFLAGS" | |
cmake --build build -j2 |