Skip to content

Commit

Permalink
Fix kagome docker push step (#2098)
Browse files Browse the repository at this point in the history
* Add docker to kagome-dev
  • Loading branch information
kamilsa authored May 20, 2024
1 parent 3c72435 commit 20990e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
name: "${{ matrix.options.name }}"
runs-on: ubuntu-latest
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
name: "${{ matrix.options.name }}"
runs-on: [ actions-runner-controller ]
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
Expand All @@ -114,7 +114,7 @@ jobs:
name: "Linux: clang-tidy"
runs-on: ubuntu-latest
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
with:
Expand All @@ -138,7 +138,7 @@ jobs:
name: "Self-hosted: Linux: gcc-12 coverage/sonar"
runs-on: [ actions-runner-controller ]
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
name: "${{ matrix.options.name }}"
runs-on: ubuntu-latest
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
Expand All @@ -203,7 +203,7 @@ jobs:
name: "${{ matrix.options.name }}"
runs-on: [ actions-runner-controller ]
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
Expand All @@ -230,7 +230,7 @@ jobs:
build-type: "RelWithDebInfo"
runs-on: [ actions-runner-controller ]
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
build-type: "RelWithDebInfo"
runs-on: [ actions-runner-controller ]
timeout-minutes: 120
container: qdrvm/kagome-dev:8-minideb
container: qdrvm/kagome-dev:9-minideb
steps:
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6
with:
Expand Down
6 changes: 6 additions & 0 deletions housekeeping/docker/kagome-dev/minideb.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,9 @@ RUN update-alternatives --install /usr/bin/python python /venv/bin/p
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 90 && \
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 90 && \
update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-12 90

# Install Docker
RUN apt-get install --no-install-recommends -y \
docker-ce \
docker-ce-cli \
containerd.io

0 comments on commit 20990e0

Please sign in to comment.