Build images #1
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 Apptainer image with CQ using micromamba | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master, main] | |
| jobs: | |
| build-test-container: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| container: | |
| image: ghcr.io/apptainer/apptainer:1.4.1 | |
| options: --privileged | |
| name: Build Container | |
| steps: | |
| - name: Check out code for the container builds | |
| uses: actions/checkout@v4 | |
| - name: Build Container | |
| run: | | |
| apptainer build container.sif images/cq.def | |