4
0
Fork 0

Compare commits

..

No commits in common. "master" and "6b9faa45067db7821d3309f42fcfa6b0bbead68c" have entirely different histories.

3 changed files with 5 additions and 41 deletions

View File

@ -1,36 +0,0 @@
kind: pipeline
type: docker
name: default
steps:
- name: kaniko
image: banzaicloud/drone-kaniko
settings:
registry: registry.kmlabz.com
repo: birbnetes/${DRONE_REPO_NAME}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}
- name: dockerhub
image: plugins/docker
settings:
repo: birbnetes/${DRONE_REPO_NAME}
username:
from_secret: DOCKERHUB_USER
password:
from_secret: DOCKERHUB_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}
- name: ms-teams
image: kuperiu/drone-teams
settings:
webhook:
from_secret: TEAMS_WEBHOOK
when:
status: [ failure ]

View File

@ -10,7 +10,7 @@ RUN mkdir /uboot_build/ && \
WORKDIR /uboot_build/
ENV UBOOT_VERSION=2021.07
ENV UBOOT_VERSION=2020.01
RUN wget http://ftp.denx.de/pub/u-boot/u-boot-${UBOOT_VERSION}.tar.bz2 && \
tar -xjf u-boot-${UBOOT_VERSION}.tar.bz2
@ -54,10 +54,10 @@ ADD ./resources/uboot.c /uboot.c
RUN arm-linux-gnueabi-gcc -Wall -static -static-libgcc -o /uboot_tool /uboot.c
FROM alpine:3.14
FROM alpine:3.11
RUN apk update && \
apk add automake build-base git autoconf confuse-dev linux-headers sudo \
apk add automake build-base git autoconf confuse-dev linux-headers \
findutils mtools e2fsprogs-extra alpine-sdk dosfstools uboot-tools && \
rm -rf /var/cache/apk/*
@ -73,7 +73,7 @@ RUN git clone https://github.com/pengutronix/genimage.git /tmp/genimage && \
ADD ./resources/genext2fs /genext2fs
RUN cd /genext2fs && \
echo | abuild-keygen -a -i -q && \
abuild-keygen -a -i -q && \
abuild -F -P /tmp/pkg && \
apk add /tmp/pkg/x86_64/genext2fs-1*.apk && \
rm -rf /tmp/pkg/

View File

@ -4,7 +4,7 @@ set -e
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# User config
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
: ${ALPINE_BRANCH:="v3.14"}
: ${ALPINE_BRANCH:="v3.11"}
: ${ALPINE_MIRROR:="http://dl-cdn.alpinelinux.org/alpine"}
: ${DEFAULT_TIMEZONE:="Etc/UTC"}