Skip to content

Commit

Permalink
Initial, virtual-only setup
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou committed Jun 25, 2024
1 parent 8bc10d4 commit 59595f4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Bencher: Run Benchmarks"

on:
push:
branches:
- main
- gha_ci
workflow_dispatch:

jobs:
run_benchmarks:
name: Continuous Integration
runs-on: [self-hosted, 1ES.Pool=gha-virtual-ccf-sub]
container:
image: ghcr.io/microsoft/ccf/ci/default:build-19-06-2024
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build
run: |
git config --global --add safe.directory /__w/CCF/CCF
mkdir build
cd build
cmake -GNinja -DCOMPILE_TARGET=virtual ..
ninja
./tests.sh -VV
shell: bash

- name: Test
run: |
cd build
./tests.sh -VV
shell: bash

0 comments on commit 59595f4

Please sign in to comment.