Skip to content

Commit

Permalink
Remove QE stack
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Sep 21, 2023
1 parent d8906b5 commit 7b42ad5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 108 deletions.
36 changes: 10 additions & 26 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,6 @@ jobs:
runsOn: ubuntu-latest
needs: [amd64-base-with-services, amd64-lab]

amd64-qe:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
image: qe
architecture: amd64
runsOn: ubuntu-latest
needs: [amd64-full-stack]

arm64-base:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
Expand Down Expand Up @@ -129,47 +121,39 @@ jobs:
runsOn: ARM64
needs: [arm64-base-with-services, arm64-lab]

arm64-qe:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
image: qe
architecture: arm64
runsOn: ARM64
needs: [arm64-full-stack]

amd64-push-ghcr:
uses: ./.github/workflows/docker-push.yml
strategy:
matrix:
image: ["base", "base-with-services", "lab", "full-stack", "qe"]
image: ["base", "base-with-services", "lab", "full-stack"]
with:
architecture: amd64
image: ${{ matrix.image }}
registry: ghcr.io
secrets:
REGISTRY_USERNAME: ${{ github.actor }}
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
needs: [amd64-base, amd64-base-with-services, amd64-lab, amd64-full-stack, amd64-qe]
needs: [amd64-base, amd64-base-with-services, amd64-lab, amd64-full-stack]

arm64-push-ghcr:
uses: ./.github/workflows/docker-push.yml
strategy:
matrix:
image: ["base", "base-with-services", "lab", "full-stack", "qe"]
image: ["base", "base-with-services", "lab", "full-stack"]
with:
architecture: arm64
image: ${{ matrix.image }}
registry: ghcr.io
secrets:
REGISTRY_USERNAME: ${{ github.actor }}
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
needs: [arm64-base, arm64-base-with-services, arm64-lab, arm64-full-stack, arm64-qe]
needs: [arm64-base, arm64-base-with-services, arm64-lab, arm64-full-stack]

merge-tags-ghcr:
uses: ./.github/workflows/docker-merge-tags.yml
strategy:
matrix:
image: ["base", "base-with-services", "lab", "full-stack", "qe"]
image: ["base", "base-with-services", "lab", "full-stack"]
with:
image: ${{ matrix.image }}
registry: ghcr.io
Expand All @@ -183,37 +167,37 @@ jobs:
uses: ./.github/workflows/docker-push.yml
strategy:
matrix:
image: ["base", "base-with-services", "lab", "full-stack", "qe"]
image: ["base", "base-with-services", "lab", "full-stack"]
with:
architecture: amd64
image: ${{ matrix.image }}
registry: docker.io
secrets:
REGISTRY_USERNAME: ${{ secrets.DOCKER_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.DOCKER_PASSWORD }}
needs: [amd64-base, amd64-base-with-services, amd64-lab, amd64-full-stack, amd64-qe]
needs: [amd64-base, amd64-base-with-services, amd64-lab, amd64-full-stack]

arm64-push-dockerhub:
if: github.repository == 'aiidalab/aiidalab-docker-stack' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
uses: ./.github/workflows/docker-push.yml
strategy:
matrix:
image: ["base", "base-with-services", "lab", "full-stack", "qe"]
image: ["base", "base-with-services", "lab", "full-stack"]
with:
architecture: arm64
image: ${{ matrix.image }}
registry: docker.io
secrets:
REGISTRY_USERNAME: ${{ secrets.DOCKER_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.DOCKER_PASSWORD }}
needs: [arm64-base, arm64-base-with-services, arm64-lab, arm64-full-stack, arm64-qe]
needs: [arm64-base, arm64-base-with-services, arm64-lab, arm64-full-stack]

merge-tags-dockerhub:
if: github.repository == 'aiidalab/aiidalab-docker-stack' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
uses: ./.github/workflows/docker-merge-tags.yml
strategy:
matrix:
image: ["base", "base-with-services", "lab", "full-stack", "qe"]
image: ["base", "base-with-services", "lab", "full-stack"]
with:
image: ${{ matrix.image }}
registry: docker.io
Expand Down
19 changes: 0 additions & 19 deletions stack/docker-compose.qe.yml

This file was deleted.

32 changes: 0 additions & 32 deletions stack/qe/Dockerfile

This file was deleted.

10 changes: 0 additions & 10 deletions stack/qe/before-notebook.d/70_prepare-qe-executable.sh

This file was deleted.

12 changes: 0 additions & 12 deletions stack/qe/before-notebook.d/71_install-qeapp.sh

This file was deleted.

9 changes: 0 additions & 9 deletions tests/test-qe.py

This file was deleted.

0 comments on commit 7b42ad5

Please sign in to comment.