Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/build_test_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
name: "Build without LCAO and MPI"

name: ${{ matrix.name }}
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}-lts
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_test_makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_args: "CXX=mpiicpc ELPA_LIB_DIR=/usr/local/lib ELPA_INCLUDE_DIR=/usr/local/include CEREAL_DIR=/usr/include/cereal OPENMP=ON"
name: "Build with Makefile & Intel compilers"
name: ${{ matrix.name }}
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}-lts
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test-coverage:
name: Generate Coverage Report
runs-on: X64
container: ghcr.io/deepmodeling/abacus-gnu
container: ghcr.io/deepmodeling/abacus-gnu-lts
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: nvidia
if: github.repository_owner == 'deepmodeling'
container:
image: ghcr.io/deepmodeling/abacus-cuda
image: ghcr.io/deepmodeling/abacus-cuda-lts
volumes:
- /tmp/ccache:/github/home/.ccache
options: --gpus all
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }}
dp-harbor-registry.us-east-1.cr.aliyuncs.com/deepmodeling/abacus-${{ matrix.dockerfile }}
ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }}-lts
dp-harbor-registry.us-east-1.cr.aliyuncs.com/deepmodeling/abacus-${{ matrix.dockerfile }}-lts
tags: |
type=semver,pattern={{version}},enable=${{ github.ref_type == 'tag' }}
type=raw,value=latest
Expand Down Expand Up @@ -57,5 +57,5 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
file: Dockerfile.${{ matrix.dockerfile }}
push: true
cache-from: type=registry,ref=ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }}:latest
cache-from: type=registry,ref=ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }}-lts:latest
cache-to: type=inline
2 changes: 1 addition & 1 deletion .github/workflows/dynamic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Dynamic analysis
runs-on: X64
if: github.repository_owner == 'deepmodeling'
container: ghcr.io/deepmodeling/abacus-gnu
container: ghcr.io/deepmodeling/abacus-gnu-lts
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
tag: ["gnu", "intel"]
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}-lts
timeout-minutes: 2880
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: PyTest
runs-on: ubuntu-latest
container:
image: ghcr.io/deepmodeling/abacus-gnu
image: ghcr.io/deepmodeling/abacus-gnu-lts
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: X64
if: github.repository_owner == 'deepmodeling'
container:
image: ghcr.io/deepmodeling/abacus-gnu
image: ghcr.io/deepmodeling/abacus-gnu-lts
volumes:
- /tmp/ccache:/github/home/.ccache
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/toolchain_full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: contains(inputs.variants || 'gnu,intel,cuda', 'gnu')
runs-on: X64
container:
image: ghcr.io/deepmodeling/abacus-gnu
image: ghcr.io/deepmodeling/abacus-gnu-lts
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
if: contains(inputs.variants || 'gnu,intel,cuda', 'intel')
runs-on: X64
container:
image: ghcr.io/deepmodeling/abacus-intel
image: ghcr.io/deepmodeling/abacus-intel-lts
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/toolchain_smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
smoke-build-gnu:
runs-on: X64
container:
image: ghcr.io/deepmodeling/abacus-gnu
image: ghcr.io/deepmodeling/abacus-gnu-lts
defaults:
run:
shell: bash
Expand Down
Loading