enable important signals in master initialization (#931) #265
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: macos | |
on: | |
push: | |
branches: | |
- master | |
env: | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: true | |
jobs: | |
build-macos: | |
runs-on: ${{matrix.os}}-12 | |
strategy: | |
matrix: | |
include: | |
- os: macos | |
compiler: clang++ | |
cpp: 17 | |
name: "${{matrix.os}}/${{matrix.compiler}}/c++${{matrix.cpp}}" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get polyfills repo | |
uses: actions/checkout@v3 | |
with: | |
repository: 'uber/h3' | |
path: 'h3' | |
ref: stable-3.x | |
- name: Setup Environment | |
run: | | |
brew tap shivammathur/php | |
brew update | |
brew install re2c cmake coreutils openssl libiconv re2 pcre yaml-cpp zstd googletest shivammathur/php/php@7.4 | |
brew link --overwrite --force shivammathur/php/php@7.4 | |
/usr/local/Frameworks/Python.framework/Versions/3.11/bin/pip3 install jsonschema | |
- name: Run cmake | |
run: cmake -DCMAKE_CXX_COMPILER=${{matrix.compiler}} -DCMAKE_CXX_STANDARD=${{matrix.cpp}} -DDOWNLOAD_MISSING_LIBRARIES=On -S $GITHUB_WORKSPACE -B ${{runner.workspace}}/build | |
- name: Build all | |
run: make -C ${{runner.workspace}}/build -j$(nproc) all | |
- name: Run unit tests | |
run: make -C ${{runner.workspace}}/build -j$(nproc) test | |
- name: Compile dummy PHP script | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
echo 'hello world' > demo.php | |
$GITHUB_WORKSPACE/objs/bin/kphp2cpp --cxx ${{matrix.compiler}} demo.php | |
kphp_out/server -o |