Migrating to Gitea CI
Some checks failed
clang-build / clang-build (push) Failing after 16s
gcc-build / gcc-build (push) Failing after 5s

This commit is contained in:
2026-01-16 09:37:47 +01:00
parent 912faca620
commit e536cb6870
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
name: gcc-build
on: [push,pull_request,workflow_dispatch]
jobs:
gcc-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Datum
run: |
make clean all
- name: Run unit tests
run: |
./test_vector && ./test_map && ./test_bigint && ./test_string
- name: Run benchmarks
run: |
./benchmark_datum