Skip to content
This repository has been archived by the owner on Apr 22, 2022. It is now read-only.

Commit

Permalink
CI: switch to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonid Pliushch committed Jan 24, 2020
1 parent 92dc026 commit 28c2c39
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 295 deletions.
130 changes: 0 additions & 130 deletions .cirrus.yml

This file was deleted.

92 changes: 92 additions & 0 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
name: Packages

on:
push:
branches:
- master
paths:
- 'packages/**'
pull_request:
paths:
- 'packages/**'

jobs:
build:
runs-on: ubuntu-latest
env:
ANDROID_HOME: "/opt/termux/android-sdk"
NDK: "/opt/termux/android-ndk"
strategy:
matrix:
target_arch: [aarch64, arm, i686, x86_64]
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
fetch-depth: 1000
- name: Build
run: |
BASE_COMMIT=$(jq --raw-output .pull_request.base.sha "$GITHUB_EVENT_PATH")
OLD_COMMIT=$(jq --raw-output .commits[0].id "$GITHUB_EVENT_PATH")
HEAD_COMMIT=$(jq --raw-output .commits[-1].id "$GITHUB_EVENT_PATH")
if [ "$BASE_COMMIT" = "null" ]; then
if [ "$OLD_COMMIT" = "$HEAD_COMMIT" ]; then
echo "Processing commit: ${HEAD_COMMIT}"
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${HEAD_COMMIT}")
else
echo "Processing commit range: ${OLD_COMMIT}..${HEAD_COMMIT}"
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${OLD_COMMIT}" "${HEAD_COMMIT}")
fi
else
echo "Processing pull request #$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH"): ${BASE_COMMIT}..HEAD"
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${BASE_COMMIT}" "HEAD")
fi
PACKAGE_NAMES=$(sed -nE 's@^packages/([^/]*)/([^/]*)(/.*)?$@\1@p' <<< "$CHANGED_FILES" | sort | uniq)
for pkg in $PACKAGE_NAMES; do
if [ ! -d "./packages/${pkg}" ]; then
PACKAGE_NAMES=$(sed -E "s/(^|\s\s*)${pkg}(\$|\s\s*)/ /g" <<< "$PACKAGE_NAMES")
echo "$pkg" >> ./deleted_packages.txt
fi
done
PACKAGE_NAMES=$(sed 's/[[:blank:]]*$//' <<< "$PACKAGE_NAMES")
./scripts/lint-packages.sh $(echo "$PACKAGE_NAMES" | awk '{ print "./packages/"$0"/build.sh" }')
./start-builder.sh ./build-package.sh -a ${{ matrix.target_arch }} -I ${PACKAGE_NAMES}
echo "${PACKAGE_NAMES}" > ./built_packages.txt
mv ./termux-packages/debs ./debs
test -e ./built_packages.txt && mv ./built_packages.txt ./debs/
test -e ./deleted_packages.txt && mv ./deleted_packages.txt ./debs/
mkdir artifacts
tar cf artifacts/debs-${{ matrix.target_arch }}.tar debs
- name: Store *.deb files
uses: actions/upload-artifact@v1
with:
name: termux-packages
path: ./artifacts
upload:
if: github.event_name != 'pull_request'
needs: build
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Get *.deb files
uses: actions/download-artifact@v1
with:
name: termux-packages
path: ./
- name: Upload to bintray.com
env:
BINTRAY_USERNAME: xeffyr
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
run: |
for i in debs-*.tar; do
tar xf $i
done
TO_DELETE=$(test -f ./debs/deleted_packages.txt && cat ./debs/deleted_packages.txt || true)
if [ -n "$TO_DELETE" ]; then
./scripts/package_uploader.sh -d $TO_DELETE
fi
TO_UPLOAD=$(test -f ./debs/built_packages.txt && cat ./debs/built_packages.txt || true)
if [ -n "$TO_UPLOAD" ]; then
./scripts/package_uploader.sh -p ./debs $TO_UPLOAD
fi
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,4 @@ You can now visit your repo in a browser and open a pull request against this re
pressing "New pull request". See [creating-a-pull-request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)
for more information on how to do this.

Once a pull request has been created cirrus-ci will attempt to build the changes.
The status of the build can be seen by visiting https://cirrus-ci.com/github/termux/x11-packages.
Once a pull request has been created CI system will attempt to build the changes.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Termux X11 Packages

[![Packages last build status](https://github.com/termux/x11-packages/workflows/Packages/badge.svg)](https://github.com/termux/x11-packages/actions)
[![Powered by JFrog Bintray](./.github/static/powered-by-bintray.png)](https://bintray.com)

There are located build scripts and patches for Termux X11 packages.
Expand Down
157 changes: 0 additions & 157 deletions scripts/cirrus-ci_dispatcher.sh

This file was deleted.

Loading

0 comments on commit 28c2c39

Please sign in to comment.