forked from fw876/helloworld
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
99 additions
and
0 deletions.
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,99 @@ | ||
name: Start build ssr+ aarch64_generic by wk | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Test ${{ matrix.arch }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- arch: aarch64_generic | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Determine branch name | ||
run: | | ||
BRANCH="master" | ||
echo "Building for $BRANCH" | ||
echo "BRANCH=$BRANCH" >> $GITHUB_ENV | ||
- name: Determine changed packages | ||
run: | | ||
# only detect packages with changes | ||
PKG_ROOTS=$(find . -name Makefile | \ | ||
grep -v ".*/src/Makefile" | \ | ||
sed -e 's@./\(.*\)/Makefile@\1/@') | ||
CHANGES=$(git diff --diff-filter=d --name-only origin/$BRANCH) | ||
for ROOT in $PKG_ROOTS; do | ||
for CHANGE in $CHANGES; do | ||
if [[ "$CHANGE" == "$ROOT"* ]]; then | ||
PACKAGES+=$(echo "$ROOT" | sed -e 's@\(.*\)/@\1 @') | ||
break | ||
fi | ||
done | ||
done | ||
# fallback to test packages if nothing explicitly changes this is | ||
# should run if other mechanics in packages.git changed | ||
PACKAGES="${PACKAGES:-luci-app-ssr-plus}" | ||
echo "Building $PACKAGES" | ||
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV | ||
- name: Build | ||
uses: immortalwrt/[email protected] | ||
env: | ||
ARCH: ${{ matrix.arch }}-${{ env.BRANCH }} | ||
FEEDNAME: packages_ci | ||
|
||
- name: Move created packages to project dir | ||
run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true | ||
|
||
- name: Collect metadata | ||
run: | | ||
MERGE_ID=$(git rev-parse --short HEAD) | ||
echo "MERGE_ID=$MERGE_ID" >> $GITHUB_ENV | ||
echo "BASE_ID=$(git rev-parse --short HEAD^1)" >> $GITHUB_ENV | ||
echo "HEAD_ID=$(git rev-parse --short HEAD^2)" >> $GITHUB_ENV | ||
PRNUMBER=${GITHUB_REF_NAME%/merge} | ||
echo "PRNUMBER=$PRNUMBER" >> $GITHUB_ENV | ||
echo "ARCHIVE_NAME=${{matrix.arch}}-PR$PRNUMBER-$MERGE_ID" >> $GITHUB_ENV | ||
- name: Generate metadata | ||
run: | | ||
cat << _EOF_ > PKG-INFO | ||
Metadata-Version: 2.1 | ||
Name: ${{env.ARCHIVE_NAME}} | ||
Version: $BRANCH | ||
Author: $GITHUB_ACTOR | ||
Home-page: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/pull/$PRNUMBER | ||
Download-URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID | ||
Summary: $PACKAGES | ||
Platform: ${{ matrix.arch }} | ||
Packages for ImmortalWrt $BRANCH running on ${{matrix.arch}}, built from PR $PRNUMBER | ||
at commit $HEAD_ID, against $BRANCH at commit $BASE_ID, with merge SHA $MERGE_ID. | ||
Modified packages: | ||
_EOF_ | ||
for p in $PACKAGES | ||
do | ||
echo " "$p >> PKG-INFO | ||
done | ||
echo >> PKG-INFO | ||
echo Full file listing: >> PKG-INFO | ||
ls -al *.ipk >> PKG-INFO || true | ||
cat PKG-INFO | ||
- name: Store packages | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{env.ARCHIVE_NAME}}-packages | ||
path: | | ||
*.ipk | ||