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

Update CI image #365

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 16 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
41 changes: 20 additions & 21 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: Build and run tests
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
steps:
- uses: actions/checkout@v3
- name: Build and install
Expand All @@ -51,7 +51,7 @@ jobs:
name: Build and cache installation
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
steps:
- uses: actions/checkout@v3
- name: Build and install
Expand All @@ -70,7 +70,7 @@ jobs:
id: framework-install-cache
uses: actions/cache@v3
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
Expand All @@ -83,7 +83,7 @@ jobs:
name: "Previous Version File Compatibility"
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- uses: actions/checkout@v3
Expand All @@ -94,7 +94,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Open V2.2 file
run: |
Expand All @@ -106,7 +106,7 @@ jobs:
name: "Macros with clean error output"
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- uses: actions/checkout@v3
Expand All @@ -117,7 +117,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Load restRootMacros
run: |
Expand All @@ -134,14 +134,14 @@ jobs:
name: "PyROOT"
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- name: Restore cache
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Test REST classes in PyROOT
run: |
Expand All @@ -152,7 +152,7 @@ jobs:
name: "Metadata"
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- uses: actions/checkout@v3
Expand All @@ -167,7 +167,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
# Not used in gitlab pipeline, checks $CI_SERVER_HOST
- name: Load Gas
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
name: "PandaX-III"
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- uses: actions/checkout@v3
Expand All @@ -211,7 +211,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: 02_PandaXiiiMC
run: |
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
name: "TREX-DM"
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- uses: actions/checkout@v3
Expand All @@ -299,7 +299,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: TREX-DM Latest Data
run: |
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
name: Run examples
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root-garfield-geant4:latest
needs: [ framework-install ]
steps:
- uses: actions/checkout@v3
Expand All @@ -352,7 +352,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Test Metadata
run: |
Expand Down Expand Up @@ -452,10 +452,9 @@ jobs:
id: framework-install-cache-reference
uses: actions/cache@v3
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-ref-${{ github.sha }}
path: ${{ env.REST_PATH }}


pandax-iii-reference:
name: "PandaX-III on reference version"
runs-on: ubuntu-latest
Expand All @@ -475,7 +474,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache-reference
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-ref-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: 02_PandaXiiiMC
run: |
Expand Down Expand Up @@ -545,7 +544,7 @@ jobs:
uses: actions/cache@v3
id: framework-install-cache-reference
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-framework-ref-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Test Metadata
run: |
Expand Down