Skip to content

Commit ce105fe

Browse files
committed
.
1 parent 0f004b3 commit ce105fe

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.github/docker/ubuntu-24.04.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,4 @@ ENV USER test_user
6464
ENV USERPASS pass
6565
RUN useradd -m "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
6666
USER test_user
67+
#

.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-ubuntu-${{ matrix.ubuntu_ver }}:latest
21+
# image: ghcr.io/bb-ur/umf-ubuntu-${{ matrix.ubuntu_ver }}:latest
22+
image: ghcr.io/rbanka1/umf-ubuntu-${{ matrix.ubuntu_ver }}:latest # test
2223
options: --user root --privileged
2324
volumes:
2425
- ${{ github.workspace }}:${{ github.workspace }}

.github/workflows/reusable_dockers_build.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
outputs:
1919
status: ${{ job.status }}
2020
env:
21-
IMG: ghcr.io/bb-ur/umf-ubuntu-${{ matrix.ubuntu-version }}:latest
21+
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }} # test
22+
IMG: ghcr.io/rbanka1/umf-ubuntu-${{ matrix.ubuntu-version }}:latest
23+
# IMG: ghcr.io/bb-ur/umf-ubuntu-${{ matrix.ubuntu-version }}:latest
2224

2325
steps:
2426
- name: Checkout repository
@@ -35,10 +37,13 @@ jobs:
3537
uses: docker/login-action@30f019fb76bb54d03ec1e716054622be511a13b2 # v3.2.0
3638
with:
3739
registry: ghcr.io
38-
username: bb-ur
39-
password: ${{ secrets.BB_GHCR_TOKEN }}
40+
username: ${{ github.actor }} # test
41+
password: ${{ env.GHCR_TOKEN }} # test
42+
# registry: ghcr.io
43+
# username: bb-ur
44+
# password: ${{ secrets.BB_GHCR_TOKEN }}
4045

4146
- name: Push ubuntu-${{ matrix.ubuntu-version }} Docker image
42-
if: github.event_name != 'pull_request'
47+
# if: github.event_name != 'pull_request'
4348
run: |
4449
docker push ${{ env.IMG }}

.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-ubuntu-${{ matrix.ubuntu_ver }}:latest
19+
# image: ghcr.io/bb-ur/umf-ubuntu-${{ matrix.ubuntu_ver }}:latest
20+
image: ghcr.io/rbanka1/umf-ubuntu-${{ matrix.ubuntu_ver }}:latest # test
2021
options: --user root --privileged
2122
volumes:
2223
- ${{ github.workspace }}:${{ github.workspace }}

0 commit comments

Comments
 (0)