Skip to content

Update hash (#42)

Update hash (#42) #55

Workflow file for this run

name: Build AppImage Intel RealSense
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
on:
workflow_dispatch:
push:
branches:
- 'main'
paths-ignore:
- 'README.md'
jobs:
appimage:
name: AppImage Build Intel RealSense
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
include:
- os: 'buildjet-8vcpu-ubuntu-2204-arm'
container:
image: ghcr.io/viamrobotics/viam-camera-realsense:arm64
options: '--platform linux/arm64'
make_target: appimage-arm64
- os: 'ubuntu-latest'
container:
image: ghcr.io/viamrobotics/viam-camera-realsense:amd64
options: '--platform linux/amd64'
make_target: appimage-amd64
container: ${{ matrix.container }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: make ${{ matrix.make_target }}
- name: Authorize GCP Upload
uses: google-github-actions/auth@v1
with:
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
- name: Upload Files
uses: google-github-actions/[email protected]
with:
headers: "cache-control: no-cache"
path: 'packaging/appimages/deploy/'
destination: 'packages.viam.com/apps/camera-servers/'
glob: '*'
parent: false
gzip: false