Skip to content

Workflow file for this run

# Simple workflow for running merge request tests
name: Merge Request tester
on:
# temporary
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_ca_host_x86_64:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: setup-ubuntu
uses: ./.github/actions/setup_ubuntu_build
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
max-size: 100M
key: sccache-build
variant: sccache
- name: build_mr_x86-cl3.0-release
uses: ./.github/actions/do_build_ock
with:
build_type: Release
- name: build_mr_x86-offline
uses: ./.github/actions/do_build_ock
with:
build_type: Release
extra_flags: -DCA_RUNTIME_COMPILER_ENABLED=OFF -DCA_EXTERNAL_CLC=${{ github.workspace }}/build/bin/clc
build_dir: build_offline
build_targets: UnitCL
- name: run_it_for_demo
run:
ninja -C build check-UnitCL
- name: clean_build
run:
rm -rf ${{ github.workspace }}/build*
- name: build_mr-ubuntu-gcc-x86_64-riscv-3.0_m1
uses: ./.github/actions/do_build_ock/do_build_m1
- name: run_it_for_demo
run:
ninja -C build check-UnitCL
- name: run_it_for_demo2
run:
ninja -C build check-all-lit