Add a checkbox for toggling opacity in 3d redering #33
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: 🐧 Ubuntu | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.head_ref }}-ubuntu | |
| cancel-in-progress: true | |
| jobs: | |
| build_gcc: | |
| name: GCC DP 2D Profiling | |
| runs-on: ubuntu-20.04 | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: 'AMReX-Codes/amrex' | |
| path: 'amrex' | |
| - name: install dependencies | |
| run: | | |
| .github/workflows/dependencies/gcc.sh | |
| - name: build | |
| run: | | |
| make -j 2 \ | |
| AMREX_HOME=./amrex \ | |
| USE_PROFPARSER=TRUE |