add the ChangeLog to the docs #203
Workflow file for this run
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: macos-build | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| macos-build: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get submodules | |
| run: | | |
| git submodule update --init | |
| cd external/Microphysics | |
| git fetch; git checkout development | |
| cd ../amrex | |
| git fetch; git checkout development | |
| cd ../.. | |
| - name: Install dependencies | |
| run: | | |
| brew update | |
| brew install make | |
| - name: Print system info | |
| run: | | |
| echo '::group::CPU info' | |
| sysctl -a | grep machdep.cpu | |
| echo '::endgroup::' | |
| echo '::group::build tool versions' | |
| xcode-select -p | |
| clang++ --version | |
| python --version | |
| make --version | head -1 | |
| echo '::endgroup::' | |
| - name: Compile flame_wave | |
| run: | | |
| cd Exec/science/flame_wave | |
| gmake DEBUG=TRUE USE_MPI=FALSE COMP=llvm -j 3 | |