Bump version to 0.9.5 #22
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: mac | |
on: [push, pull_request] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: Set up NASM | |
run: brew install nasm | |
- name: cmake | |
working-directory: src | |
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
- name: build | |
working-directory: src/build | |
run: make -j2 | |
#disable artifacts for now, compile and package proper cross-platform, cross-architecture binaries later | |
# - uses: actions/upload-artifact@v1 | |
# with: | |
# name: ect-mac-x86-64 | |
# path: src/build/ect |