mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-18 17:09:25 +02:00
Compare commits
16 Commits
add_shellc
...
fix_entryp
Author | SHA1 | Date | |
---|---|---|---|
ca7679dc14 | |||
8f19ce75f0 | |||
94732183a1 | |||
41e5c69c34 | |||
04f84bc4ed | |||
cc5961492e | |||
55eb3b7c96 | |||
50b57169e7 | |||
8ce154f1b2 | |||
d02099ad95 | |||
92efe118b3 | |||
84e12b0f66 | |||
882a67b9d2 | |||
c1526555a5 | |||
cd5979a3c9 | |||
8873943b53 |
2
.github/workflows/expired.yml
vendored
2
.github/workflows/expired.yml
vendored
@ -6,7 +6,7 @@ jobs:
|
|||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v3
|
- uses: actions/stale@v4
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
exempt-issue-milestones: 'future,alpha,beta,release'
|
exempt-issue-milestones: 'future,alpha,beta,release'
|
||||||
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -42,7 +42,7 @@ jobs:
|
|||||||
image:
|
image:
|
||||||
name: ${{ matrix.arch_name }}
|
name: ${{ matrix.arch_name }}
|
||||||
needs: base
|
needs: base
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
28
.github/workflows/shellcheck.yml
vendored
Normal file
28
.github/workflows/shellcheck.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
name: Shellcheck CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
shellcheck:
|
||||||
|
name: Shellcheck
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Run ShellCheck
|
||||||
|
uses: ludeeus/action-shellcheck@master
|
||||||
|
with:
|
||||||
|
severity: error
|
||||||
|
format: gcc
|
||||||
|
env:
|
||||||
|
SHELLCHECK_OPTS: -s bash
|
11
Makefile
11
Makefile
@ -50,6 +50,12 @@ endif
|
|||||||
# Tag images with date and Git short hash in addition to revision
|
# Tag images with date and Git short hash in addition to revision
|
||||||
TAG := $(shell date '+%Y%m%d')-$(shell git rev-parse --short HEAD)
|
TAG := $(shell date '+%Y%m%d')-$(shell git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
# shellcheck executable
|
||||||
|
SHELLCHECK := shellcheck
|
||||||
|
|
||||||
|
# Defines the level of verification (error, warning, info...)
|
||||||
|
SHELLCHECK_SEVERITY_LEVEL := error
|
||||||
|
|
||||||
#
|
#
|
||||||
# images: This target builds all IMAGES (because it is the first one, it is built by default)
|
# images: This target builds all IMAGES (because it is the first one, it is built by default)
|
||||||
#
|
#
|
||||||
@ -275,6 +281,11 @@ purge: clean
|
|||||||
# Remove all images with organization (ex dockcross/*)
|
# Remove all images with organization (ex dockcross/*)
|
||||||
$(DOCKER) images --filter=reference='$(ORG)/*' --format='{{.Repository}}:{{.Tag}}' | xargs -r $(DOCKER) rmi -f
|
$(DOCKER) images --filter=reference='$(ORG)/*' --format='{{.Repository}}:{{.Tag}}' | xargs -r $(DOCKER) rmi -f
|
||||||
|
|
||||||
|
# Check bash syntax
|
||||||
|
bash-check:
|
||||||
|
find . -type f \( -name "*.sh" -o -name "*.bash" \) -print0 | xargs -0 -P"$(shell nproc)" -I{} \
|
||||||
|
$(SHELLCHECK) --check-sourced --color=auto --format=gcc --severity=error --shell=bash --enable=all "{}"
|
||||||
|
|
||||||
#
|
#
|
||||||
# testing implicit rule
|
# testing implicit rule
|
||||||
#
|
#
|
||||||
|
@ -13,4 +13,4 @@ RUN \
|
|||||||
rm -rf /buildscripts
|
rm -rf /buildscripts
|
||||||
|
|
||||||
# Runtime scripts
|
# Runtime scripts
|
||||||
COPY imagefiles/entrypoint.sh imagefiles/dockcross /dockcross/
|
COPY imagefiles/entrypoint.sh imagefiles/dockcross.sh /dockcross/
|
||||||
|
@ -6,11 +6,11 @@ DEFAULT_DOCKCROSS_IMAGE=dockcross/base # DO NOT MOVE THIS LINE (see entrypoint.
|
|||||||
# Helpers
|
# Helpers
|
||||||
#
|
#
|
||||||
err() {
|
err() {
|
||||||
echo -e >&2 ERROR: $@\\n
|
echo -e >&2 "ERROR: $*\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
die() {
|
die() {
|
||||||
err $@
|
err "$*"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
@ -7,13 +7,13 @@ if [[ $# == 0 ]]; then
|
|||||||
# Presumably the image has been run directly, so help the user get
|
# Presumably the image has been run directly, so help the user get
|
||||||
# started by outputting the dockcross script
|
# started by outputting the dockcross script
|
||||||
if [[ -n $DEFAULT_DOCKCROSS_IMAGE ]]; then
|
if [[ -n $DEFAULT_DOCKCROSS_IMAGE ]]; then
|
||||||
head -n 2 /dockcross/dockcross
|
head -n 2 /dockcross/dockcross.sh
|
||||||
echo "DEFAULT_DOCKCROSS_IMAGE=$DEFAULT_DOCKCROSS_IMAGE"
|
echo "DEFAULT_DOCKCROSS_IMAGE=$DEFAULT_DOCKCROSS_IMAGE"
|
||||||
tail -n +4 /dockcross/dockcross |
|
tail -n +4 /dockcross/dockcross.sh |
|
||||||
sed -e "s@dockcross\/linux\-armv7@${DEFAULT_DOCKCROSS_IMAGE}@g" |
|
sed -e "s@dockcross\/linux\-armv7@${DEFAULT_DOCKCROSS_IMAGE}@g" |
|
||||||
sed -e "s@dockcross\-linux\-armv7@${DEFAULT_DOCKCROSS_IMAGE//[\/:]/-}@g"
|
sed -e "s@dockcross\-linux\-armv7@${DEFAULT_DOCKCROSS_IMAGE//[\/:]/-}@g"
|
||||||
else
|
else
|
||||||
cat /dockcross/dockcross
|
cat /dockcross/dockcross.sh
|
||||||
fi
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
@ -6,7 +6,7 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|||||||
# crosstool-ng master 2021-07-07
|
# crosstool-ng master 2021-07-07
|
||||||
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
||||||
|
|
||||||
ENV QEMU_VERSION 6.0.0
|
ARG QEMU_VERSION=6.0.0
|
||||||
|
|
||||||
#include "common.crosstool"
|
#include "common.crosstool"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|||||||
# crosstool-ng master 2021-07-07
|
# crosstool-ng master 2021-07-07
|
||||||
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
||||||
|
|
||||||
ENV QEMU_VERSION 6.0.0
|
ARG QEMU_VERSION=6.0.0
|
||||||
|
|
||||||
#include "common.crosstool"
|
#include "common.crosstool"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|||||||
# crosstool-ng master 2021-07-07
|
# crosstool-ng master 2021-07-07
|
||||||
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
||||||
|
|
||||||
ENV QEMU_VERSION 6.0.0
|
ARG QEMU_VERSION=6.0.0
|
||||||
|
|
||||||
#include "common.crosstool"
|
#include "common.crosstool"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|||||||
# crosstool-ng master 2021-07-07
|
# crosstool-ng master 2021-07-07
|
||||||
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
ENV CT_VERSION 62e9db247be34f8a4fa3bc116e60a1b15db62a97
|
||||||
|
|
||||||
ENV QEMU_VERSION 6.0.0
|
ARG QEMU_VERSION=6.0.0
|
||||||
|
|
||||||
#include "common.crosstool"
|
#include "common.crosstool"
|
||||||
|
|
||||||
|
@ -1,17 +1,24 @@
|
|||||||
FROM dockcross/base:latest
|
FROM dockcross/base:latest
|
||||||
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
||||||
# flang
|
|
||||||
|
ARG CLANG_VERSION=13
|
||||||
|
ENV CLANG_VERSION=${CLANG_VERSION}
|
||||||
|
|
||||||
RUN echo "deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye main" >> /etc/apt/sources.list \
|
RUN echo "deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye main" >> /etc/apt/sources.list \
|
||||||
|
&& echo "deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-${CLANG_VERSION} main" >> /etc/apt/sources.list \
|
||||||
&& echo "deb-src http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye main" >> /etc/apt/sources.list \
|
&& echo "deb-src http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye main" >> /etc/apt/sources.list \
|
||||||
|
&& echo "deb-src http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-${CLANG_VERSION} main" >> /etc/apt/sources.list \
|
||||||
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \
|
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get purge --autoremove -y gcc g++ software-properties-common \
|
&& apt-get purge --autoremove -y gcc g++ software-properties-common \
|
||||||
&& apt-get -y install clang libc++-dev libc++abi-dev clang-format clang-tidy lldb \
|
&& apt-get -y install clang-${CLANG_VERSION} libc++-${CLANG_VERSION}-dev libc++abi-${CLANG_VERSION}-dev clang-format-${CLANG_VERSION} clang-tidy-${CLANG_VERSION} lldb-${CLANG_VERSION} \
|
||||||
&& apt-get clean --yes \
|
&& apt-get clean --yes \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& update-alternatives --install /usr/bin/cc cc /usr/bin/clang 90 \
|
&& update-alternatives --install /usr/bin/cc cc /usr/bin/clang-${CLANG_VERSION} 90 \
|
||||||
&& update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 90 \
|
&& update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-${CLANG_VERSION} 90 \
|
||||||
&& update-alternatives --install /usr/bin/cpp cpp /usr/bin/clang++ 90 \
|
&& update-alternatives --install /usr/bin/cpp cpp /usr/bin/clang++-${CLANG_VERSION} 90 \
|
||||||
|
&& update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${CLANG_VERSION} 90 \
|
||||||
|
&& update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${CLANG_VERSION} 90 \
|
||||||
&& cc --version \
|
&& cc --version \
|
||||||
&& c++ --version \
|
&& c++ --version \
|
||||||
&& cpp --version
|
&& cpp --version
|
||||||
|
Reference in New Issue
Block a user