Update Github actions scripts (#3209)

This commit is contained in:
Igor Pečovnik
2021-11-09 18:31:48 +01:00
committed by GitHub
parent 2a47ad5c78
commit eb60188ad1
6 changed files with 134 additions and 213 deletions

10
.github/labeler.yml vendored
View File

@@ -24,6 +24,12 @@
- config/kernel/* - config/kernel/*
- config/sources/* - config/sources/*
"c:bsp":
- config/sources/**/*
- config/boards/*
- config/bootscripts/*
- config/bootenv/*
"c:build script": "c:build script":
- lib/* - lib/*
@@ -33,5 +39,5 @@
"c:cli": "c:cli":
- config/cli/* - config/cli/*
"c:ci": "c:actions":
- .github/* - .github/workflows/*

View File

@@ -5,7 +5,7 @@ Common tags:
- self-hosted - self-hosted
- Linux - Linux
- X64 - X64
- ARM64 - ARM64 (4Gb memory with ZRAM_PERCENTAGE=50)
- public (isolated runners for merge reqeusts) - public (isolated runners for merge reqeusts)
- local (local network) - local (local network)
- cache (mounted cache) - cache (mounted cache)

View File

@@ -13,8 +13,48 @@ on:
# - completed # - completed
jobs: jobs:
Merge:
name: "Merge master into nightly"
runs-on: [self-hosted, Linux]
if: ${{ github.repository_owner == 'Armbian' }}
steps:
- name: Checkout Armbian build script
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: armbian/build
path: build
ref: nightly
clean: false
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_KEY2 }}
passphrase: ${{ secrets.GPG_PASSPHRASE2 }}
workdir: build
git-user-signingkey: true
git-commit-gpgsign: true
- name: Merge master into nightly
run: |
cd build
git config --global user.email "info@armbian.com"
git config --global user.name "Armbianworker"
git checkout master
git fetch
git merge origin/master
git checkout nightly
git merge master nightly
git push
Prepare: Prepare:
needs: [ Merge ]
runs-on: [self-hosted, Linux, images] runs-on: [self-hosted, Linux, images]
if: ${{ github.repository_owner == 'armbian' }} if: ${{ github.repository_owner == 'armbian' }}
outputs: outputs:
@@ -70,13 +110,15 @@ jobs:
# clean leftovers # clean leftovers
sudo rm -rf temp/* sudo rm -rf temp/*
cat build/config/targets-cli-beta.conf build/config/targets-desktop-beta.conf | grep -v "^$" | grep -v "^#" | shuf > temp/split.conf cat build/config/targets-cli-beta.conf build/config/targets-desktop-beta.conf | grep -v "^$" | grep -v "^#" | shuf > temp/split.conf
split -d --numeric=1 --number=r/22 --additional-suffix=.conf --suffix-length=2 temp/split.conf temp/split- PARTS=$(cat temp/split.conf | wc -l)
split -d --numeric=1 --number=r/${PARTS} --additional-suffix=.conf --suffix-length=3 temp/split.conf temp/split-
echo $CHUNKS echo $CHUNKS
- name: Prepare matrix - name: Prepare matrix
id: list_dirs id: list_dirs
run: run:
echo ::set-output name=matrix::$(for x in $(seq -w 01 22); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq) PARTS=$(cat temp/split.conf | wc -l)
echo ::set-output name=matrix::$(for x in $(seq -w 1 $(cat temp/split.conf | wc -l)); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq)
- name: Cache build configurations - name: Cache build configurations
uses: actions/cache@v2 uses: actions/cache@v2
@@ -119,6 +161,10 @@ jobs:
sudo pkill arm-binfmt-P || true sudo pkill arm-binfmt-P || true
sudo pkill aarch64-binfmt-P || true sudo pkill aarch64-binfmt-P || true
sudo pkill pixz || true sudo pkill pixz || true
if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then
sudo mountpoint -q build/cache/rootfs && sudo fusermount -u build/cache/rootfs || true
sudo mountpoint -q build/cache/toolchain && sudo fusermount -u build/cache/toolchain || true
fi
sudo mountpoint -q build/output/images && sudo fusermount -u build/output/images || true sudo mountpoint -q build/output/images && sudo fusermount -u build/output/images || true
[[ "$(df | grep "/.tmp" | wc -l)" -eq 0 && $(sudo mountpoint -q build/output/images; echo $?) -eq 1 ]] && sudo rm -rf build/.tmp && break [[ "$(df | grep "/.tmp" | wc -l)" -eq 0 && $(sudo mountpoint -q build/output/images; echo $?) -eq 1 ]] && sudo rm -rf build/.tmp && break
echo "Mounted temp directories. Trying to unmount." echo "Mounted temp directories. Trying to unmount."
@@ -173,16 +219,20 @@ jobs:
run: | run: |
CHUNK="${{ matrix.node }}" CHUNK="${{ matrix.node }}"
CHUNK=$(echo $CHUNK | sed 's/^0*//')
CHUNK=$(printf "%03d" $CHUNK)
cd build cd build
# use prepared configs # use prepared configs
sudo mkdir -p userpatches sudo mkdir -p userpatches
sudo cp ../scripts/configs/* userpatches/ sudo cp ../scripts/configs/* userpatches/
# prepare host # prepare host
[[ ! -f .ignore_changes ]] && sudo touch .ignore_changes [[ ! -f .ignore_changes ]] && sudo touch .ignore_changes
./compile.sh KERNEL_ONLY="yes" BOARD="bananapi" BRANCH="current" KERNEL_CONFIGURE="no" USE_TORRENT="yes" REPOSITORY_INSTALL="kernel" 'prepare_host' sudo rm -rf cache/sources
[[ ! -d cache/toolchain ]] && ./compile.sh KERNEL_ONLY="yes" BOARD="bananapi" BRANCH="current" KERNEL_CONFIGURE="no" USE_TORRENT="yes" REPOSITORY_INSTALL="kernel" 'prepare_host'
sudo rm -rf cache/sources
if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then
sudo rm -rf cache/toolchain/*
sudo mkdir -p cache/toolchain build/cache/rootfs || true sudo mkdir -p cache/toolchain build/cache/rootfs || true
! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
@@ -191,7 +241,9 @@ jobs:
fi fi
# calculate how many images we can build in parallel # calculate how many images we can build in parallel
PARALLEL_BUILDS=$(awk '{printf("%d",$1/5000)}' <<<$(($(LC_ALL=C free -w 2>/dev/null | grep "^Mem" | awk '{print $2}' || LC_ALL=C free | grep "^Mem"| awk '{print $2}')/1024))) # PARALLEL_BUILDS=$(awk '{printf("%d",$1/5000)}' <<<$(($(LC_ALL=C free -w 2>/dev/null | grep "^Mem" | awk '{print $2}' || LC_ALL=C free | grep "^Mem"| awk '{print $2}')/1024)))
# disable parallel builds since we have lots of runners
PARALLEL_BUILDS=0
# mount deploy target # mount deploy target
sudo apt-get -y -qq install sshfs sudo apt-get -y -qq install sshfs
sudo mkdir -p /root/.ssh/ sudo mkdir -p /root/.ssh/

View File

@@ -261,8 +261,8 @@ jobs:
BOARD=$(echo $CHUNK | cut -d":" -f1) BOARD=$(echo $CHUNK | cut -d":" -f1)
BRANCH=$(echo $CHUNK | cut -d":" -f2) BRANCH=$(echo $CHUNK | cut -d":" -f2)
echo "FILE_NAME=${BOARD}-${BRANCH}" >> $GITHUB_ENV echo "FILE_NAME=${BOARD}-${BRANCH}" >> $GITHUB_ENV
cd build cd build
sudo rsync -ar --delete ../scripts/hash${FILE_EXT}/. cache/hash${FILE_EXT}/ 2> /dev/null sudo rm -f cache/hash${FILE_EXT}/*
[[ ! -f .ignore_changes ]] && sudo touch .ignore_changes [[ ! -f .ignore_changes ]] && sudo touch .ignore_changes
./compile.sh KERNEL_ONLY="yes" BOARD="bananapi" BRANCH="current" KERNEL_CONFIGURE="no" REPOSITORY_INSTALL="u-boot,kernel" 'prepare_host_basic' ./compile.sh KERNEL_ONLY="yes" BOARD="bananapi" BRANCH="current" KERNEL_CONFIGURE="no" REPOSITORY_INSTALL="u-boot,kernel" 'prepare_host_basic'
if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then
@@ -270,17 +270,15 @@ jobs:
! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
fi fi
rm -rf output/debs* sudo rm -rf output/debs*
./compile.sh ARMBIAN_MIRROR="https://github.com/armbian/mirror/releases/download/" BOARD="$BOARD" CLEAN_LEVEL="alldebs" \ ./compile.sh ARMBIAN_MIRROR="https://github.com/armbian/mirror/releases/download/" BOARD="$BOARD" CLEAN_LEVEL="alldebs" \
PRIVATE_CCACHE="yes" BETA="$BETA" KERNEL_ONLY="yes" BRANCH="$BRANCH" KERNEL_CONFIGURE="no" OFFLINE="no" PRIVATE_CCACHE="yes" BETA="$BETA" KERNEL_ONLY="yes" BRANCH="$BRANCH" KERNEL_CONFIGURE="no" OFFLINE="no"
[[ $? -eq 0 ]] && echo "UPLOAD=true" >> $GITHUB_ENV if [[ $? -eq 0 ]]; then
sudo mkdir -p ../build-kernel echo "UPLOAD=true" >> $GITHUB_ENV
echo "${FILE_EXT}" sudo mkdir -p ../build-kernel
RAZLIKA=$(diff -q "cache/hash${FILE_EXT}/" "../scripts/hash${FILE_EXT}/" | grep -v gitlog | cut -d" " -f2) cp cache/hash${FILE_EXT}/*.git* ../build-kernel/
[[ -n $RAZLIKA ]] && cp $RAZLIKA ../build-kernel/ echo "FILE_HASH=$(ls -1 cache/hash${FILE_EXT}/*.githash | head -1)" >> $GITHUB_ENV
cp $(diff -q "cache/hash${FILE_EXT}/" "../scripts/hash${FILE_EXT}/" | grep -v gitlog | cut -d" " -f2) ../build-kernel/ fi
echo "FILE_HASH=$(diff -q "cache/hash${FILE_EXT}/" "../scripts/hash${FILE_EXT}/" | grep -v gitlog | cut -d" " -f2)" >> $GITHUB_ENV
fi fi
- name: Upload hash - name: Upload hash
@@ -370,7 +368,7 @@ jobs:
run: | run: |
ls -l build-kernel ls -l build-kernel
if [[ "$(cat build-kernel/skip 2> /dev/null || true)" == "no" ]]; then if [[ "$(cat build-kernel/skip 2> /dev/null || true)" == "no" ]]; then
sudo rsync -ar --remove-source-files *.githash scripts/hash${{ env.FILE_EXT }}/ || true sudo rsync -ar --remove-source-files *.git* scripts/hash${{ env.FILE_EXT }}/ || true
cd scripts cd scripts
sudo chown -R $USER:$USER .git sudo chown -R $USER:$USER .git
if git status --porcelain | grep .; then if git status --porcelain | grep .; then

View File

@@ -5,8 +5,48 @@ on:
jobs: jobs:
Cache: Merge:
name: "Merge master into nightly"
runs-on: [self-hosted, Linux]
if: ${{ github.repository_owner == 'Armbian' }}
steps:
- name: Checkout Armbian build script
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: armbian/build
path: build
ref: nightly
clean: false
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_KEY2 }}
passphrase: ${{ secrets.GPG_PASSPHRASE2 }}
workdir: build
git-user-signingkey: true
git-commit-gpgsign: true
- name: Merge master into nightly
run: |
cd build
git config --global user.email "info@armbian.com"
git config --global user.name "Armbianworker"
git checkout master
git fetch
git merge origin/master
git checkout nightly
git merge master nightly
git push
Prepare:
needs: [ Merge ]
name: Determine needed targets name: Determine needed targets
runs-on: [self-hosted, Linux, cache] runs-on: [self-hosted, Linux, cache]
if: ${{ github.repository_owner == 'armbian' }} if: ${{ github.repository_owner == 'armbian' }}
@@ -75,30 +115,28 @@ jobs:
sudo mkdir -p cache/toolchain cache/rootfs || true sudo mkdir -p cache/toolchain cache/rootfs || true
! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
fi fi
sudo rm -f cache/rootfs/*.complete
sudo rm -f userpatches/targets.conf sudo rm -f userpatches/targets.conf
cd ../scripts ../scripts/cacherebuild.sh "no" "../build-rootfs/filelist.txt"
./cacherebuild.sh "" "../build-rootfs/filelist.txt" PARTS=$(cat ../build-rootfs/filelist.txt | wc -l)
cd .. split -d --numeric=1 --number=r/${PARTS} --additional-suffix=.conf --suffix-length=3 ../build-rootfs/filelist.txt ../build-rootfs/split-
cd build-rootfs
PARTS=$(cat filelist.txt | wc -l)
split -d --numeric=1 --number=r/${PARTS} --additional-suffix=.conf --suffix-length=3 filelist.txt split-
- name: Prepare matrix - name: Prepare matrix
id: list_dirs id: list_dirs
run: | run: |
PARTS=$(cat build-rootfs/filelist.txt | wc -l) PARTS=$(cat build-rootfs/filelist.txt | wc -l)
echo ::set-output name=matrix::$(for x in $(seq -w 1 $PARTS); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq) echo ::set-output name=matrix::$(for x in $(seq -w 1 $PARTS); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq)
Job: Cache:
needs: [ Cache ] needs: [ Prepare ]
runs-on: [self-hosted, Linux, cache] runs-on: [self-hosted, Linux, cache]
if: ${{ github.repository_owner == 'armbian' }} if: ${{ github.repository_owner == 'armbian' }}
timeout-minutes: 480 timeout-minutes: 480
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
node: ${{fromJson(needs.Cache.outputs.matrix)}} node: ${{fromJson(needs.Prepare.outputs.matrix)}}
steps: steps:
@@ -159,7 +197,7 @@ jobs:
workdir: scripts workdir: scripts
git-user-signingkey: true git-user-signingkey: true
- name: Build beta images - name: Build rootfs cache
env: env:
GPG_PASS: ${{ secrets.GPG_PASSPHRASE1 }} GPG_PASS: ${{ secrets.GPG_PASSPHRASE1 }}
@@ -180,7 +218,7 @@ jobs:
Finish: Finish:
name: Finish name: Finish
needs: [Job] needs: [Cache]
runs-on: [self-hosted, Linux, cache] runs-on: [self-hosted, Linux, cache]
if: ${{ github.repository_owner == 'Armbian' }} if: ${{ github.repository_owner == 'Armbian' }}
steps: steps:
@@ -246,5 +284,5 @@ jobs:
! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true ! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
fi fi
sudo rm -f userpatches/targets.conf sudo rm -f userpatches/targets.conf
../scripts/cacherebuild.sh "yes" ../scripts/cacherebuild.sh "yes" test

View File

@@ -69,6 +69,7 @@ jobs:
done done
sudo apt-get -y -qq update sudo apt-get -y -qq update
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" -y -qq upgrade sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" -y -qq upgrade
sudo apt-get purge -y --auto-remove unattended-upgrades
[[ -d build/.git ]] && sudo chown -R $USER:$USER build/.git || true [[ -d build/.git ]] && sudo chown -R $USER:$USER build/.git || true
[[ -d build/output/images ]] && sudo rm -rf build/output/images/* || true [[ -d build/output/images ]] && sudo rm -rf build/output/images/* || true
cd build cd build
@@ -85,184 +86,10 @@ jobs:
sudo rm -rf output/debs sudo rm -rf output/debs
sudo rm -rf output/debs-beta sudo rm -rf output/debs-beta
Cache:
name: Make cache
needs: [ Maint ]
runs-on: [self-hosted, Linux, cache]
if: ${{ github.repository_owner == 'armbian' }}
outputs:
matrix: ${{steps.list_dirs.outputs.matrix}}
steps:
- name: Fix permissions
run: |
# make sure no temporally dirs are mounted from previous runs
while :
do
sudo pkill compile.sh || true
sudo pkill arm-binfmt-P || true
sudo pkill aarch64-binfmt-P || true
sudo pkill pixz || true
sudo mountpoint -q build/output/images && sudo fusermount -u build/output/images || true
[[ "$(df | grep "/.tmp" | wc -l)" -eq 0 ]] && sudo rm -rf build/.tmp && break
echo "Mounted temp directories. Trying to unmount."
df | grep ".tmp" | awk '{print $6}' | xargs sudo umount 2>/dev/null || true
sleep 10
done
sudo chown -R $USER:$USER build/.git
- name: Checkout Armbian build script
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: armbian/build
path: build
ref: nightly
clean: false
- name: Checkout Armbian support scripts
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: armbian/scripts
token: ${{ secrets.SCRIPTS_ACCESS_TOKEN }}
path: scripts
ref: master
clean: true
- name: Cache build configurations
uses: actions/cache@v2
env:
cache-name: build-rootfs
with:
path: build-rootfs
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.run_id }}
- name: Build rootfs cache
run: |
echo "BLTPATH=\"$(pwd)/build/\"" | tee scripts/cacherebuild.conf scripts/betarepository.conf >/dev/null
mkdir -p build-rootfs
rm -f build-rootfs/*
cd build
sudo rm -rf output/images/*
sudo mkdir -p userpatches
sudo cp ../scripts/configs/* userpatches/
[[ ! -f .ignore_changes ]] && sudo touch .ignore_changes
./compile.sh KERNEL_ONLY="yes" BOARD="bananapi" BRANCH="current" KERNEL_CONFIGURE="no" USE_TORRENT="yes" REPOSITORY_INSTALL="kernel" 'prepare_host'
if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then
sudo mkdir -p cache/toolchain cache/rootfs || true
! sudo mountpoint -q cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
! sudo mountpoint -q cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
fi
sudo rm -f userpatches/targets.conf
cd ../scripts
./cacherebuild.sh
cd ..
cd build-rootfs
PARTS=$(($(cat filelist.txt | wc -l)/5))
split -d --numeric=1 --number=r/32 --additional-suffix=.conf --suffix-length=2 filelist.txt split-
- name: Prepare matrix
id: list_dirs
run:
PARTS=$(($(cat filelist.txt | wc -l)/5))
echo ::set-output name=matrix::$(for x in $(seq -w 01 32); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq)
Job:
needs: [ Cache ]
runs-on: [self-hosted, Linux, cache]
if: ${{ github.repository_owner == 'armbian' }}
timeout-minutes: 480
strategy:
fail-fast: false
matrix:
node: ${{fromJson(needs.Cache.outputs.matrix)}}
steps:
- name: Cache Gradle packages
uses: actions/cache@v2
env:
cache-name: build-rootfs
with:
path: build-rootfs
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.run_id }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-${{ github.run_id }}
- name: Fix permissions
run: |
# make sure no temporally dirs are mounted from previous runs
while :
do
sudo pkill compile.sh || true
sudo pkill arm-binfmt-P || true
sudo pkill aarch64-binfmt-P || true
sudo pkill pixz || true
sudo mountpoint -q build/output/images && sudo fusermount -u build/output/images || true
[[ "$(df | grep "/.tmp" | wc -l)" -eq 0 && $(sudo mountpoint -q build/output/images; echo $?) -eq 1 ]] && sudo rm -rf build/.tmp && break
echo "Mounted temp directories. Trying to unmount."
df | grep ".tmp" | awk '{print $6}' | xargs sudo umount 2>/dev/null || true
sleep 10
done
[[ -d build/.git ]] && sudo chown -R $USER:$USER build/.git || true
[[ -d build/output/images ]] && sudo rm -rf build/output/images/* || true
- name: Checkout Armbian build script
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: armbian/build
path: build
ref: nightly
clean: false
- name: Checkout Armbian support scripts
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: armbian/scripts
token: ${{ secrets.SCRIPTS_ACCESS_TOKEN }}
path: scripts
clean: false
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_KEY1 }}
passphrase: ${{ secrets.GPG_PASSPHRASE1 }}
workdir: scripts
git-user-signingkey: true
- name: Build beta images
env:
GPG_PASS: ${{ secrets.GPG_PASSPHRASE1 }}
run: |
CHUNK="${{ matrix.node }}"
if [[ $(curl -s http://ifconfig.me) == "93.103.15.56" ]]; then
sudo mkdir -p build/cache/toolchain build/cache/rootfs || true
! sudo mountpoint -q build/cache/toolchain && sudo mount nas:/tank/armbian/toolchain.armbian.com build/cache/toolchain -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
! sudo mountpoint -q build/cache/rootfs && sudo mount nas:/tank/armbian/dl.armbian.com/_rootfs build/cache/rootfs -o rsize=32768,wsize=32768,timeo=5,retrans=2,actimeo=60,retry=15 || true
fi
cd build
# use prepared configs
sudo mkdir -p userpatches
sudo cp ../scripts/configs/* userpatches/
# prepare host
[[ ! -f .ignore_changes ]] && sudo touch .ignore_changes || true
bash ../build-rootfs/split-${CHUNK}.conf
Caches: Caches:
name: Sync & test cache integrity name: Sync & test cache integrity
needs: [Job] needs: [Maint]
runs-on: [self-hosted, Linux, small] runs-on: [self-hosted, Linux, small]
if: ${{ github.repository_owner == 'Armbian' }} if: ${{ github.repository_owner == 'Armbian' }}
outputs: outputs:
@@ -343,7 +170,7 @@ jobs:
steps: steps:
- name: Fix permissions - name: Fix permissions
run: | run: |
sudo chown -R $USER:$USER . [[ -d build/.git ]] && sudo chown -R $USER:$USER build/.git || true
- name: Checkout Armbian build script - name: Checkout Armbian build script
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with: