Merge branch 'master' of github.com:mcaceresb/stata-gtools #44
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
# Test compile plugin | |
name: linux | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Compile Plugin | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Plugin | |
run: | | |
# brew install xx | |
git submodule update --init | |
cd lib/spookyhash && git checkout spookyhash-1.0.6 && cd - | |
make clean SPI=2.0 SPIVER=v2 && make all SPI=2.0 SPIVER=v2 GCC=gcc | |
make clean SPI=3.0 SPIVER=v3 && make all SPI=3.0 SPIVER=v3 GCC=gcc |