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 validation image #104

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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
16 changes: 8 additions & 8 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Validate library
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root:latest
steps:
- uses: rest-for-physics/framework/.github/actions/checkout@master
with:
Expand All @@ -33,7 +33,7 @@ jobs:
name: Validate pre-commit config
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root:latest
steps:
- name: Checkout rawlib
uses: rest-for-physics/framework/.github/actions/checkout@master
Expand All @@ -50,7 +50,7 @@ jobs:
name: Build only rawlib
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root:latest
steps:
- name: Build and install
uses: rest-for-physics/framework/.github/actions/build@master
Expand All @@ -61,14 +61,14 @@ jobs:
id: rawlib-install-cache
uses: actions/cache@v3
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-raw-${{ github.sha }}
path: ${{ env.REST_PATH }}

Process:
name: Check processes
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root:latest
needs: [ build-rawlib ]
steps:
- uses: rest-for-physics/framework/.github/actions/checkout@master
Expand All @@ -80,7 +80,7 @@ jobs:
uses: actions/cache@v3
id: rawlib-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-raw-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Add signal noise
run: |
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
name: Process Dream data
runs-on: ubuntu-latest
container:
image: ghcr.io/lobis/root-geant4-garfield:rest-for-physics
image: ghcr.io/rest-for-physics/root:latest
needs: [ build-rawlib ]
steps:
- uses: rest-for-physics/framework/.github/actions/checkout@master
Expand All @@ -136,7 +136,7 @@ jobs:
uses: actions/cache@v3
id: rawlib-install-cache
with:
key: ${{ env.BRANCH_NAME }}-${{ github.sha }}
key: ${{ env.BRANCH_NAME }}-raw-${{ github.sha }}
path: ${{ env.REST_PATH }}
- name: Dream data
run: |
Expand Down