From 2ddc2f4d4913dd39e4f43f542493b70d2f9a5a45 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 25 May 2020 17:29:56 -0700 Subject: [PATCH] ci: Sync master source to ppa-snapshot branch --- .github/workflows/build.yml | 60 ++++++++++++++++++++++++------------- Makefile | 4 ++- scripts/archive-source.sh | 6 ++++ 3 files changed, 48 insertions(+), 22 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 457b36080c..17178c08fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -257,25 +257,43 @@ jobs: asset_name: xemu-macos-debug.zip asset_path: dist/xemu-macos-debug.zip asset_content_type: application/zip - - name: Upload Release Assets (Ubuntu Release Build) - if: github.event_name == 'push' && github.ref == 'refs/heads/master' - id: upload-release-asset-ubuntu-release - uses: actions/upload-release-asset@v1.0.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # Sync archive version of source (including submodule code) to the + # ppa-snapshot branch to work around limitations of the Launchpad platform, + # namely: no network egress on package build, no custom scripting in source + # package creation. + PushToPPA: + if: github.event_name == 'push' && github.ref == 'refs/heads/master' + # needs: [Ubuntu, Windows, macOS] + needs: Init + runs-on: ubuntu-latest + steps: + - name: Clone Tree + uses: actions/checkout@v2 + - name: Clone Tree (Unshallow) + run: | + git fetch --prune --unshallow --tags + - name: Create Source Archive + run: | + ./scripts/archive-source.sh archive.tgz + mkdir archive + pushd archive + tar xf ../archive.tgz + popd + - name: Integrate Debian Packaging + run: | + # Clone deb branch containing packaging files + git clone --branch=deb --depth=1 https://github.com/mborgerson/xemu.git /tmp/xemu-debian + mv /tmp/xemu-debian/debian archive + + # Create changelog containing current version + echo -e "xemu (1:$(cat archive/XEMU_VERSION)-0) unstable; urgency=medium\n" > archive/debian/changelog + echo -e " Built from $(cat archive/XEMU_VERSION)\n" >> archive/debian/changelog + echo " -- Matt Borgerson $(date -R)" >> archive/debian/changelog + - name: Deploy Source Archive to Branch + uses: peaceiris/actions-gh-pages@v3 with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_name: xemu-ubuntu-release.tgz - asset_path: dist/xemu-ubuntu-release.tgz - asset_content_type: application/gzip - - name: Upload Release Assets (Ubuntu Debug Build) - if: github.event_name == 'push' && github.ref == 'refs/heads/master' - id: upload-release-asset-ubuntu-debug - uses: actions/upload-release-asset@v1.0.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_name: xemu-ubuntu-debug.tgz - asset_path: dist/xemu-ubuntu-debug.tgz - asset_content_type: application/gzip + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./archive + publish_branch: ppa-snapshot + force_orphan: true diff --git a/Makefile b/Makefile index 5b298d4f39..896c33a000 100644 --- a/Makefile +++ b/Makefile @@ -512,7 +512,9 @@ XEMU_BRANCH := $(shell \ XEMU_VERSION := $(shell \ cd $(SRC_PATH); \ if test -e .git; then \ - git describe --match 'xemu-v*' | cut -c 6- | tr -d '\n'; \ + git describe --match 'xemu-v*' | cut -c 7- | tr -d '\n'; \ + elif test -e XEMU_VERSION; then \ + cat XEMU_VERSION; \ fi) xemu-version.c: FORCE diff --git a/scripts/archive-source.sh b/scripts/archive-source.sh index fb5d6b3918..b38bcc1499 100755 --- a/scripts/archive-source.sh +++ b/scripts/archive-source.sh @@ -69,4 +69,10 @@ for sm in $submodules; do tar --concatenate --file "$tar_file" "$sub_file" test $? -ne 0 && error "failed append submodule $sm to $tar_file" done + +git rev-parse HEAD 2>/dev/null | tr -d '\n' > XEMU_COMMIT +git symbolic-ref --short HEAD > XEMU_BRANCH +git describe --match 'xemu-v*' | cut -c 7- | tr -d '\n' > XEMU_VERSION +tar -r --file "$tar_file" XEMU_COMMIT XEMU_BRANCH XEMU_VERSION + exit 0