Skip to content

feat: a brand new hhss! (#70) #52

feat: a brand new hhss! (#70)

feat: a brand new hhss! (#70) #52

Workflow file for this run

name: Test for C++ implementations
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- ".github/workflows/cpp.yml"
- "test/*"
- "*/cpp/*"
jobs:
test:
name: Run test
runs-on: self-hosted
container:
image: buildpack-deps:jammy
defaults:
run:
working-directory: ./test
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build test maker
run: gcc -o test_maker test_maker.c
- name: Build object program
run: make all
working-directory: ./hd/cpp
- name: Build host program
run: ./test_maker .test/hd.test
- name: Run test
run: ./test ../hd/cpp/hd
timeout-minutes: 5