Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove QE build #438

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions build.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@
},
"AIIDALAB_HOME_VERSION": {
"default": "23.03.1"
},
"AIIDALAB_QE_VERSION": {
"default": "23.04.6"
},
"QE_VERSION": {
"default": "7.2"
}
}
}
25 changes: 1 addition & 24 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ variable "AIIDALAB_VERSION" {
variable "AIIDALAB_HOME_VERSION" {
}

variable "AIIDALAB_QE_VERSION" {
}

variable "QE_VERSION" {
}

variable "JUPYTER_BASE_IMAGE" {
default = "jupyter/minimal-notebook:python-${PYTHON_VERSION}"
}
Expand All @@ -40,7 +34,7 @@ variable "PLATFORMS" {
}

variable "TARGETS" {
default = ["base", "base-with-services", "lab", "full-stack", "qe"]
default = ["base", "base-with-services", "lab", "full-stack"]
}

function "tags" {
Expand All @@ -54,10 +48,6 @@ group "default" {
targets = "${TARGETS}"
}

target "qe-meta" {
tags = tags("qe")
}

target "base-meta" {
tags = tags("base")
}
Expand Down Expand Up @@ -114,16 +104,3 @@ target "full-stack" {
}
platforms = "${PLATFORMS}"
}

target "qe" {
inherits = ["qe-meta"]
context = "stack/qe"
contexts = {
full-stack = "target:full-stack"
}
args = {
"AIIDALAB_QE_VERSION" = "${AIIDALAB_QE_VERSION}"
"QE_VERSION" = "${QE_VERSION}"
}
platforms = "${PLATFORMS}"
}
5 changes: 0 additions & 5 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,3 @@ def aiidalab_version(_build_config):
@pytest.fixture(scope="session")
def aiidalab_home_version(_build_config):
return _build_config["AIIDALAB_HOME_VERSION"]["default"]


@pytest.fixture(scope="session")
def qe_version(_build_config):
return _build_config["QE_VERSION"]["default"]
Loading