Skip to content

Commit 3529f79

Browse files
committed
.
1 parent 5705c2a commit 3529f79

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/detect_changes.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
paths:
99
- '.github/docker/*.Dockerfile'
10+
- '.github/scripts/*'
1011

1112
permissions:
1213
contents: read

.github/workflows/pr_push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
uses: ./.github/workflows/reusable_checks.yml
2222
FastBuild:
2323
name: Fast builds
24-
needs: [CodeChecks]
24+
# needs: [CodeChecks]
2525
uses: ./.github/workflows/reusable_fast.yml
2626
Build:
2727
name: Basic builds
28-
needs: [FastBuild]
28+
# needs: [FastBuild]
2929
uses: ./.github/workflows/reusable_basic.yml
3030
DevDax:
3131
needs: [FastBuild]

.github/workflows/reusable_basic.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
name: Ubuntu
1919
runs-on: ubuntu-latest
2020
container:
21-
image: ghcr.io/bb-ur/umf-${{ matrix.os }}:latest
21+
# image: ghcr.io/bb-ur/umf-${{ matrix.os }}:latest
22+
image: ghcr.io/rbanka1/umf-${{ matrix.os }}:latest
2223
options: --privileged
2324
volumes:
2425
- ${{ github.workspace }}:${{ github.workspace }}

.github/workflows/reusable_fast.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
name: Linux
1717
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-22.04' }}
1818
container:
19-
image: ghcr.io/bb-ur/umf-${{ matrix.os }}:latest
19+
# image: ghcr.io/bb-ur/umf-${{ matrix.os }}:latest
20+
image: ghcr.io/rbanka1/umf-${{ matrix.os }}:latest
2021
options: --user test_user --privileged
2122
volumes:
2223
- ${{ github.workspace }}:${{ github.workspace }}

0 commit comments

Comments
 (0)