Opnxng
16159ef4c4
Some checks failed
etherpad / build (push) Successful in 1m24s
docker-buildx / build (push) Successful in 1m11s
ansible / build (push) Successful in 20m43s
caddy / build (push) Successful in 6m28s
wolfree / build (push) Failing after 5s
simplytranslate / build (push) Failing after 4s
searxng / build-searxng (push) Failing after 3s
rat-aint-tieba / build (push) Failing after 5s
proxigram / build (push) Failing after 5s
imgin / build (push) Failing after 4s
binternet / build (push) Failing after 3s
67 lines
3.1 KiB
YAML
67 lines
3.1 KiB
YAML
name: wolfree
|
|
run-name: wolfree
|
|
env:
|
|
REPO_NAME: wolfree
|
|
REMOTE_REPO: https://codeberg.org/wolfree/wolfree-dockerfile.git
|
|
BUILD_PLATFORM: linux/arm64
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *" # at midnight
|
|
push:
|
|
paths:
|
|
- ".gitea/workflows/wolfree.yaml"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: runner
|
|
container:
|
|
image: git.opnxng.com/opnxng/docker-buildx:latest
|
|
steps:
|
|
- name: Check latest upstream commit
|
|
run: |
|
|
STORED_COMMIT=$(curl -H "Authorization: Bearer ${{ secrets.NT }}" -s "https://nt.opnxng.com/${REPO_NAME}/raw?poll=1" | tail -n 1)
|
|
LATEST_COMMIT=$(git ls-remote ${REMOTE_REPO} | awk '{print $1}' | head -1)
|
|
echo "STORED_COMMIT=${STORED_COMMIT}" >> "$GITHUB_ENV"
|
|
echo "LATEST_COMMIT=${LATEST_COMMIT}" >> "$GITHUB_ENV"
|
|
echo "Stored Commit: ${STORED_COMMIT}"
|
|
echo "Latest Commit: ${LATEST_COMMIT}"
|
|
|
|
- name: Build and push Docker image
|
|
run: |
|
|
if [ "$STORED_COMMIT" != "$LATEST_COMMIT" ]; then
|
|
echo "Found a new commit, building new image"
|
|
# Create and use Docker Buildx builder
|
|
docker buildx create --use --name buildx
|
|
# Login to Package Registry
|
|
echo "${{ secrets.TOKEN }}" | docker login git.opnxng.com -u ${{ gitea.repository_owner }} --password-stdin
|
|
# Build and push Docker image
|
|
mkdir temp
|
|
cd temp
|
|
git clone ${REMOTE_REPO} .
|
|
sed -i '/^RUN PATH="$HOME\/.cargo\/bin:$PATH" cargo run --manifest-path \.\/rust\/wolfree_libredirect_patch\/Cargo\.toml -- ;$/s/^#//' Dockerfile # Make Libredirect-compatible
|
|
docker buildx build \
|
|
--platform ${BUILD_PLATFORM} \
|
|
-t git.opnxng.com/${{ gitea.repository_owner }}/${REPO_NAME}:latest \
|
|
-f ./Dockerfile \
|
|
--push . && \
|
|
curl -H prio:low -d "Built and pushed ${REPO_NAME}" https://ntfy.opnxng.com/build || \
|
|
{ curl -H tags:warning -H prio:high -d "Built and pushed ${REPO_NAME} failed!" https://ntfy.opnxng.com/build ; exit 1; }
|
|
# Remove Docker Buildx builder
|
|
docker buildx rm buildx
|
|
else
|
|
echo "No new commit, skipped build"
|
|
fi
|
|
|
|
- name: Update stored commit
|
|
run: |
|
|
if [ "$STORED_COMMIT" != "$LATEST_COMMIT" ]; then
|
|
curl -H "Authorization: Bearer ${{ secrets.NT }}" -d $(git ls-remote ${REMOTE_REPO} | awk '{print $1}' | head -1) "https://nt.opnxng.com/${REPO_NAME}"
|
|
STORED_COMMIT=$(curl -H "Authorization: Bearer ${{ secrets.NT }}" -s "https://nt.opnxng.com/${REPO_NAME}/raw?poll=1" | tail -n 1)
|
|
echo "STORED_COMMIT=${STORED_COMMIT}" >> "$GITHUB_ENV"
|
|
else
|
|
curl -H "Authorization: Bearer ${{ secrets.NT }}" -d $(git ls-remote ${REMOTE_REPO} | awk '{print $1}' | head -1) "https://nt.opnxng.com/${REPO_NAME}"
|
|
STORED_COMMIT=$(curl -H "Authorization: Bearer ${{ secrets.NT }}" -s "https://nt.opnxng.com/${REPO_NAME}/raw?poll=1" | tail -n 1)
|
|
echo "STORED_COMMIT=${STORED_COMMIT}" >> "$GITHUB_ENV"
|
|
exit 1
|
|
fi
|