-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance CI Workflow: Automate .deb
Package Build and Release for Multiple Distributions
#4427
Open
hacksysteam
wants to merge
11
commits into
Genymobile:master
Choose a base branch
from
hacksysteam:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b6b17c6
CI/CD: added build yaml file
hacksysteam f00314e
Merge branch 'Genymobile:master' into master
hacksysteam 89ffda2
Merge branch 'Genymobile:master' into master
hacksysteam 4adfca9
Merge branch 'Genymobile:master' into master
hacksysteam 5bf5e99
Merge branch 'Genymobile:master' into master
hacksysteam baaf080
Merge branch 'Genymobile:master' into master
hacksysteam 3ef6b50
Merge branch 'Genymobile:master' into master
hacksysteam ed3562e
Merge branch 'Genymobile:master' into master
hacksysteam 1861e51
feat: added ubuntu jammy
hacksysteam 439df7f
Merge branch 'Genymobile:master' into master
hacksysteam 7fee795
Merge branch 'Genymobile:master' into master
hacksysteam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
name: Build and Publish Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- distro: "debian:bookworm" | ||
os_name: "bookworm" | ||
- distro: "debian:bullseye" | ||
os_name: "bullseye" | ||
- distro: "ubuntu:focal" | ||
os_name: "focal" | ||
|
||
container: | ||
image: docker://${{ matrix.distro }} | ||
|
||
env: | ||
SCRCPY_USER: scrcpy | ||
SCRCPY_BUILD_DIR: ./build-auto | ||
ANDROID_SDK_ROOT: /opt/android-sdk | ||
ANDROID_HOME: /opt/android-sdk | ||
DISTRIBUTION: ${{ matrix.os_name }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache APT packages, Android SDK and Gradle dependencies | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/var/cache/apt | ||
/var/lib/apt/lists | ||
/opt/android-sdk | ||
/home/${{ env.SCRCPY_USER }}/.gradle | ||
key: ${{ runner.os }}-${{ matrix.os_name }}-apt-gradle-${{ hashFiles('**/build.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ matrix.os_name }}-apt-gradle- | ||
${{ runner.os }}-${{ matrix.os_name }}- | ||
${{ runner.os }}-apt-gradle- | ||
|
||
- name: Setup user and permissions | ||
run: | | ||
if [ ! -d "/etc/sudoers.d" ]; then | ||
mkdir -p /etc/sudoers.d | ||
chmod 750 /etc/sudoers.d | ||
fi | ||
groupadd -r ${SCRCPY_USER} || true | ||
echo "${SCRCPY_USER} ALL=(ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/${SCRCPY_USER} | ||
chmod 0440 /etc/sudoers.d/${SCRCPY_USER} | ||
useradd -m -u 1000 -r -g ${SCRCPY_USER} ${SCRCPY_USER} || true | ||
usermod -aG sudo ${SCRCPY_USER} || true | ||
chown -R ${SCRCPY_USER}:${SCRCPY_USER} /home/${SCRCPY_USER} | ||
|
||
- name: Install dependencies | ||
run: | | ||
export DEBIAN_FRONTEND=noninteractive | ||
sed -i '/DPkg::Post-Invoke/d' /etc/apt/apt.conf.d/docker-clean | ||
sed -i '/APT::Update::Post-Invoke/d' /etc/apt/apt.conf.d/docker-clean | ||
apt-get update -q | ||
apt-get -qq -y upgrade | ||
apt-get -o APT::Keep-Downloaded-Packages=true -y install \ | ||
sudo \ | ||
jq \ | ||
curl \ | ||
unzip \ | ||
gcc \ | ||
pkg-config \ | ||
meson \ | ||
ninja-build \ | ||
libsdl2-dev \ | ||
libavcodec-dev \ | ||
libavdevice-dev \ | ||
libavformat-dev \ | ||
libavutil-dev \ | ||
libswresample-dev \ | ||
libusb-1.0-0-dev \ | ||
openjdk-17-jdk | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v3 | ||
|
||
- name: Fix Android SDK directory permissions | ||
run: | | ||
chown -R ${SCRCPY_USER}:${SCRCPY_USER} ${ANDROID_HOME} | ||
|
||
- name: Build scrcpy | ||
run: | | ||
mkdir -p ${SCRCPY_BUILD_DIR} | ||
mkdir -p .gradle | ||
mkdir -p server/build | ||
chown -R ${SCRCPY_USER}:${SCRCPY_USER} ${SCRCPY_BUILD_DIR} | ||
chown -R ${SCRCPY_USER}:${SCRCPY_USER} .gradle | ||
chown -R ${SCRCPY_USER}:${SCRCPY_USER} server/build | ||
|
||
sudo -u ${SCRCPY_USER} \ | ||
meson setup "${SCRCPY_BUILD_DIR}" \ | ||
--buildtype=release \ | ||
--strip \ | ||
-Db_lto=true | ||
sudo ANDROID_HOME=${ANDROID_HOME} -u ${SCRCPY_USER} \ | ||
ninja -C "${SCRCPY_BUILD_DIR}" | ||
|
||
- name: Build and package scrcpy as a .deb | ||
run: | | ||
sudo SCRCPY_BUILD_DIR=${SCRCPY_BUILD_DIR} \ | ||
DISTRIBUTION=${DISTRIBUTION} -u ${SCRCPY_USER} \ | ||
sh <<'EOF' | ||
# Setup the debian directory | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/DEBIAN | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/bin | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/share/scrcpy | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/share/man/man1 | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/share/icons/hicolor/256x256/apps | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/share/zsh/site-functions | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/share/bash-completion/completions | ||
mkdir -p ${SCRCPY_BUILD_DIR}/debian/usr/local/share/applications | ||
|
||
# Create the control file | ||
cat <<EOL >${SCRCPY_BUILD_DIR}/debian/DEBIAN/control | ||
Package: scrcpy | ||
Version: 2.2 | ||
Section: utils | ||
Priority: optional | ||
Architecture: amd64 | ||
Depends: ffmpeg, libsdl2-2.0-0, libusb-1.0-0 | ||
Suggests: adb | ||
Maintainer: Scrcpy Developers <scrcpy-devs@github.com> | ||
Description: Display and control your Android device | ||
This application provides display and control of Android devices connected | ||
on USB (or over TCP/IP). It does not require any root access. | ||
EOL | ||
|
||
cp -f ${SCRCPY_BUILD_DIR}/app/scrcpy ${SCRCPY_BUILD_DIR}/debian/usr/local/bin/ | ||
cp -f ${SCRCPY_BUILD_DIR}/server/scrcpy-server ${SCRCPY_BUILD_DIR}/debian/usr/local/share/scrcpy/scrcpy-server | ||
cp -f app/scrcpy.1 ${SCRCPY_BUILD_DIR}/debian/usr/local/share/man/man1 | ||
cp -f app/data/icon.png ${SCRCPY_BUILD_DIR}/debian/usr/local/share/icons/hicolor/256x256/apps/scrcpy.png | ||
cp -f app/data/zsh-completion/_scrcpy ${SCRCPY_BUILD_DIR}/debian/usr/local/share/zsh/site-functions | ||
cp -f app/data/bash-completion/scrcpy ${SCRCPY_BUILD_DIR}/debian/usr/local/share/bash-completion/completions | ||
cp -f app/data/scrcpy.desktop ${SCRCPY_BUILD_DIR}/debian/usr/local/share/applications | ||
cp -f app/data/scrcpy-console.desktop ${SCRCPY_BUILD_DIR}/debian/usr/local/share/applications | ||
|
||
dpkg-deb --build ${SCRCPY_BUILD_DIR}/debian ${SCRCPY_BUILD_DIR}/scrcpy_${DISTRIBUTION}_amd64.deb | ||
EOF | ||
|
||
- name: Fix Android SDK directory permissions | ||
run: | | ||
chown -R root:root ${ANDROID_HOME} | ||
|
||
- name: Get Release ID | ||
id: get_release | ||
run: | | ||
response=$(curl \ | ||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
"https://api.github.com/repos/${{ github.repository }}/releases/tags/latest") | ||
release_id=$(echo $response | jq .id) | ||
echo "release_id=$release_id" >> $GITHUB_ENV | ||
continue-on-error: true | ||
|
||
- name: Create Release | ||
if: env.release_id == '' | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: release-${{ github.sha }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Package to Release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ env.SCRCPY_BUILD_DIR }}/scrcpy_${{ env.DISTRIBUTION }}_amd64.deb | ||
asset_name: scrcpy_${{ env.DISTRIBUTION }}_amd64.deb | ||
tag: release-${{ github.sha }} | ||
overwrite: true |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This adds a dependency from a "random" user in the process, doesn't it? Ditto below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Github actions allow you to use community actions. The one you highlighted uses
ncipollo/release-action@v1
to create a release.You can check the release here: https://github.com/hacksysteam/scrcpy/releases
The workflow file was designed to just create 1 release per push, we can make changes and adapt this to the project requirements. I just tested the bookworm deb file and it works, both server and app are included in the same deb file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll get it fixed.