Merge branch 'main' into public-main #2
This file contains hidden or 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: Build Script | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Create Build Environment | |
run: | | |
git clone https://github.com/spack/spack.git | |
. ./spack/share/spack/setup-env.sh | |
spack install dyninst papi mpi libunwind | |
spack load dyninst papi mpi libunwind | |
./build.sh |