Skip to content

ci/kuiper: workflow that build Scopy for Kuiper #3

ci/kuiper: workflow that build Scopy for Kuiper

ci/kuiper: workflow that build Scopy for Kuiper #3

Workflow file for this run

name: Kuiper Scopy Build
on: [push, pull_request]
env:
BUILD_HOST: ubuntu-22.04
USERNAME: github-actions
jobs:
build_scopy_on_ubuntu22:
runs-on: ubuntu-22.04
container:
image: cristianbindea/scopy2-kuiper:latest
options: --user root
steps:
- uses: actions/checkout@v3
- name: Build Scopy
shell: bash
run: |
$GITHUB_WORKSPACE/ci/kuiper/kuiper_build_process.sh install_packages download_cmake download_crosscompiler move_sysroot build_scopy create_appdir create_appimage move_appimage
- name: Set short git commit SHA
shell: bash
run: echo "commit_sha=$(git rev-parse --short ${{ github.sha }})" >> "$GITHUB_ENV"
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}\Scopy.appimage
asset_name: scopy-linux-armhf-${{ env.commit_sha }}
tag: ${{ github.ref }}
overwrite: true
body: "Scopy armhf"