ops: Fix CICD docker usage #4

Closed
brock wants to merge 15 commits from fix/cicd into main
2 changed files with 1 additions and 7 deletions
Showing only changes of commit 034a249976 - Show all commits

View File

@@ -14,9 +14,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
-
name: Create docker cache folder
run: mkdir -p /tmp/docker
-
name: Build docker builder-image
uses: docker/build-push-action@v4
@@ -26,9 +23,6 @@ jobs:
tags: cproject-builder:latest
push: false
load: true
cache-from: type=local,src=/tmp/docker
cache-to: type=local,dest=/tmp/docker
outputs: type=docker,dest=/tmp/docker/${{ runner.os }}-builder-image.tar
-
name: Build library
uses: https://github.com/addnab/docker-run-action@v3

View File

@@ -30,7 +30,7 @@ RUN echo "alias ll='ls -laGFh'" >> /root/.bashrc
VOLUME ["/builder/mnt"]
WORKDIR /builder/mnt
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# install clang tools
ARG base_tag=bullseye