Migrating to Gitea CI
This commit is contained in:
20
.gitea/workflows/gcc-build.yml
Normal file
20
.gitea/workflows/gcc-build.yml
Normal 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
|
||||
Reference in New Issue
Block a user