From 0f973827170e5cd1c7adcdf7f8fc1d677d573d3b Mon Sep 17 00:00:00 2001 From: Renato Freitas Date: Fri, 27 Oct 2023 15:12:26 -0400 Subject: [PATCH] Update workflow file to support multiple architectures --- .github/workflows/autobuild.yml | 91 +++++++++++++++++++++------------ 1 file changed, 59 insertions(+), 32 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index eaa512e..50290d6 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -5,60 +5,87 @@ jobs: build: name: Build runs-on: ubuntu-20.04 + + strategy: + matrix: + architecture: [amd64] + steps: - name: Checkout code - uses: actions/checkout@v2 - - run: docker build -t builder . + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Build container for ${{ matrix.architecture }} + run: | + docker build -t builder --build-arg TARGET_ARCH=${{ matrix.architecture }} . + - run: git clone --depth=1 --branch mosh-1.3.2 https://github.com/mobile-shell/mosh.git - - run: docker run -v $PWD/mosh:/mosh -w /mosh --name=builder builder sh -c './autogen.sh && LDFLAGS=-static ./configure && make' - - uses: actions/upload-artifact@v2 + + - name: Build binaries for ${{ matrix.architecture }} + run: docker run -v $PWD/mosh:/mosh -w /mosh --name=builder builder sh -c './autogen.sh && LDFLAGS=-static ./configure && make' + + - uses: actions/upload-artifact@v3 with: - name: mosh-server + name: mosh-server-${{ matrix.architecture }} path: mosh/src/frontend/mosh-server if-no-files-found: error - - uses: actions/upload-artifact@v2 + + - uses: actions/upload-artifact@v3 with: - name: mosh-client + name: mosh-client-${{ matrix.architecture }} path: mosh/src/frontend/mosh-client if-no-files-found: error - - run: | + + release: + name: Release + needs: [build] + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + + - name: Download artifacts + uses: actions/download-artifact@v3 + + - name: Create release description + run: | ( echo '- [Build #${{ github.run_number }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})' echo '- [Workflow file](https://github.com/${{ github.repository }}/blob/${{ github.sha }}/.github/workflows/autobuild.yml)' echo echo '## Files' echo '```' - (cd mosh/src/frontend && file mosh-server mosh-client) + (file mosh-client-*/mosh-client mosh-server-*/mosh-server) echo '```' echo echo '## SHA256 Checksums' echo '```' - (cd mosh/src/frontend && sha256sum mosh-server mosh-client) + (sha256sum mosh-client-*/mosh-client mosh-server-*/mosh-server) echo '```' ) | tee release.md - - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - id: upload_artifact + uses: actions/upload-artifact@v3 with: + name: release.md + path: release.md + if-no-files-found: error + + - run: | + for i in mosh-client-*/; do zip -r "${i%/}.zip" "$i"; done + + - run: | + for i in mosh-server-*/; do zip -r "${i%/}.zip" $i; done + + - name: Create release + uses: softprops/action-gh-release@v1 + with: + name: "Build #${{ github.run_number }}" tag_name: run-${{ github.run_number }} - release_name: "Build #${{ github.run_number }}" - body_path: release.md prerelease: false draft: false - - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: mosh/src/frontend/mosh-client - asset_name: mosh-client - asset_content_type: application/octet-stream - - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: mosh/src/frontend/mosh-server - asset_name: mosh-server - asset_content_type: application/octet-stream + body_path: release.md + files: | + *.zip +