Temporarily remove DeePKS nspin test. (#7725) #3654
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: Container | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| packages: write | |
| concurrency: | |
| group: container-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref == 'refs/heads/develop' }} | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build_container_and_push: | |
| name: Build and push (${{ matrix.dockerfile }}) | |
| runs-on: X64 | |
| if: >- | |
| github.repository == 'deepmodeling/abacus-develop' && | |
| (github.ref == 'refs/heads/develop' || | |
| startsWith(github.ref, 'refs/tags/v')) | |
| strategy: | |
| matrix: | |
| dockerfile: | |
| - gnu | |
| - intel | |
| - cuda | |
| steps: | |
| - name: Configure Docker client | |
| run: | | |
| config_dir="${RUNNER_TEMP}/docker-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${{ matrix.dockerfile }}" | |
| mkdir -p "${config_dir}" | |
| echo "DOCKER_CONFIG=${config_dir}" >> "${GITHUB_ENV}" | |
| - name: Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: | | |
| ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }} | |
| dp-harbor-registry.us-east-1.cr.aliyuncs.com/deepmodeling/abacus-${{ matrix.dockerfile }} | |
| flavor: | | |
| latest=false | |
| tags: | | |
| type=semver,pattern={{version}},value=${{ github.ref_name }},enable=${{ github.ref_type == 'tag' }} | |
| type=raw,value=latest | |
| - name: Setup Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Login to GitHub Container Registry | |
| if: github.event_name != 'workflow_dispatch' | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Login to Aliyun Registry | |
| if: github.event_name != 'workflow_dispatch' | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: dp-harbor-registry.us-east-1.cr.aliyuncs.com | |
| # AliCloud automatically mirrors this registry to registry.dp.tech. | |
| username: ${{ secrets.DP_HARBOR_USERNAME }} | |
| password: ${{ secrets.DP_HARBOR_PASSWORD }} | |
| - name: Build and push container | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: "{{defaultContext}}" | |
| file: Dockerfile.${{ matrix.dockerfile }} | |
| push: ${{ github.event_name != 'workflow_dispatch' }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: | | |
| type=registry,ref=ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }}:latest | |
| cache-to: type=inline |