Skip to content

[Enhancement] Makefile for building all programs (#44) #23

[Enhancement] Makefile for building all programs (#44)

[Enhancement] Makefile for building all programs (#44) #23

Workflow file for this run

name: Test for Rust implementations
on:
push:
branches: [main]
jobs:
test:
name: Run test
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./test
steps:
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: actions/checkout@v4
with:
submodules: true
- name: Build test maker
run: gcc -o test_maker test_maker.c
- name: Build object program
run: rustc hd.rs -C debuginfo=0 -C opt-level=z -C strip=symbols -o hd
working-directory: ./hd/rust
- name: Build host program
run: ./test_maker .test/hd.test
- name: Run test
run: ./test ../hd/rust/hd
timeout-minutes: 5