Compare commits

...

11 Commits

Author SHA1 Message Date
1b482976c0 Fix path
All checks were successful
Build and push Docker images / build-and-push (push) Successful in 2h19m7s
2026-03-12 09:43:20 +00:00
67aede7d9b Fix version
All checks were successful
Build and push Docker images / build-and-push (push) Successful in 1m35s
2026-03-12 09:36:01 +00:00
b26efcc89f Fix indentation
Some checks failed
Build and push Docker images / build-and-push (push) Failing after 1m28s
2026-03-12 09:29:21 +00:00
f1b00c0000 Fix tab indentation error 2026-03-12 09:26:43 +00:00
e6c5cff3a9 Kaniko new builder 2026-03-12 09:26:09 +00:00
61ea6ec5ac Fix column issue
Some checks failed
Build and push Docker images / build-and-push (push) Failing after 1m38s
2026-03-12 09:21:08 +00:00
aa65516e0f Build with redhat-actions
Some checks failed
Build and push Docker images / build-and-push (push) Failing after 1m44s
2026-03-12 09:13:47 +00:00
NiccoloN
1f3aace239 fix github workflow
Some checks failed
Build and push Docker images / build-and-push (push) Failing after 1m40s
2026-03-11 17:22:41 +01:00
NiccoloN
9b368cbf4b fix github workflow
Some checks failed
Build and push Docker images / build-and-push (push) Failing after 1m19s
2026-03-11 17:14:59 +01:00
NiccoloN
1aac62cfc8 fix github workflow
Some checks failed
Build and push Docker images / build-and-push (push) Failing after 1m12s
2026-03-11 17:06:25 +01:00
NiccoloN
6089120483 fix github workflow 2026-03-11 17:05:13 +01:00

View File

@@ -20,30 +20,22 @@ jobs:
env:
REGISTRY: docker.io
IMAGE_NAME: niccolon/raptor-deps:mlir0c2701f
IMAGE_NAME: niccolon/raptor-deps-mlir0c2701f
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
github-server-url: https://chef.heaplab.deib.polimi.it/git
repository: nnicolosi/Raptor-Containers
- name: Build Docker image
run: |
cd ${GITHUB_WORKSPACE}/mlir0c2701f
docker build -t ${REGISTRY}/${IMAGE_NAME} -f Dockerfile .
git clone --depth 1 --branch ${GITHUB_REF_NAME} \
https://chef.heaplab.deib.polimi.it/git/${GITHUB_REPOSITORY}.git \
${GITHUB_WORKSPACE}
- name: Log in to the Container registry
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
- name: Build and Push with Kaniko
uses: aevea/action-kaniko@master
with:
registry: ${{ env.REGISTRY }}
image: niccolon/raptor-deps-mlir0c2701f
path: ./mlir0c2701f
build_file: Dockerfile
username: niccolon
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push Docker image
if: ${{ github.ref == 'refs/heads/main' }}
id: push
run: |
docker push ${REGISTRY}/${IMAGE_NAME}
# Extra args to handle the specific environment
extra_args: "--snapshot-mode=redo --use-new-run"