Add CUDA configuration to firedrake-configure and github actions (#4988) #439
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: Deploy after push | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/core.yml | |
| with: | |
| source_ref: ${{ github.ref_name }} | |
| target_branch: ${{ github.ref_name }} | |
| test_macos: true | |
| test_gpu: true | |
| deploy_website: true | |
| secrets: inherit | |
| docker: | |
| name: Build developer Docker containers | |
| uses: ./.github/workflows/docker.yml | |
| with: | |
| tag: dev-${{ github.ref_name }} | |
| branch: ${{ github.ref_name }} | |
| build_dev: true | |
| secrets: inherit | |
| colab: | |
| name: Update Colab notebooks (release only) | |
| if: github.ref_name == 'release' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Install dependencies | |
| run: pip install nbformat | |
| - name: Checkout Firedrake | |
| uses: actions/checkout@v5 | |
| with: | |
| path: firedrake | |
| ref: ${{ github.ref_name }} | |
| - name: Checkout Colab notebooks | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: firedrakeproject/notebooks | |
| path: notebooks | |
| token: ${{ secrets.NOTEBOOKS_REPO_TOKEN }} | |
| - name: Copy notebooks | |
| run: cp -r firedrake/docs/notebooks/* notebooks/ | |
| - name: Prepare notebooks for Colab | |
| working-directory: notebooks | |
| run: ./utils/firedrake-colab-notebooks ./*.ipynb | |
| - name: Push changes if needed | |
| working-directory: notebooks | |
| run: | | |
| if [ ! -z "$( git status --porcelain )" ]; then | |
| echo "Changes detected" | |
| git status | |
| # Use the GitHub bot user account information | |
| git config user.name "GitHub Actions" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add --all . | |
| git commit -m "Upstream updates" | |
| git push | |
| fi |