[RSDK-5863] Add Address Sanitizer (ASan) option for intel realsense… #53
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
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 |