Skip to content

chore: add UX infrastructure (quickstart, doctor, setup) #58

chore: add UX infrastructure (quickstart, doctor, setup)

chore: add UX infrastructure (quickstart, doctor, setup) #58

Workflow file for this run

# SPDX-License-Identifier: MPL-2.0-or-later
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Install GNAT
run: |
sudo apt-get update
sudo apt-get install -y gnat gprbuild
- name: Build
run: |
mkdir -p obj bin
gprbuild -P cloud_sync_tuner.gpr
- name: Upload binary
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: cloud_sync_tuner
path: bin/cloud_sync_tuner
container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Build container (Alpine fallback)
run: |
docker build -f Containerfile.alpine-fallback -t cloud-sync-tuner:test .