Skip to content

Commit

Permalink
Rollback some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
reiniscirpons committed Oct 27, 2023
1 parent 4949985 commit 5b48274
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# .circleci/config.yml

version: 2.1

jobs:
test:
docker:
- image: reiniscirpons/hpcombi-env-arm64v8:v1
resource_class: arm.medium
steps:
- checkout
- run:
name: Run cmake
command: |
mkdir build
cd build
cmake -DBUILD_TESTING=1 ..
- run:
name: Run make in tests folder
command: |
cd build/tests
make
- run:
name: Run tests
command: |
cd build/tests
./test_all
workflows:
test:
jobs:
- test

0 comments on commit 5b48274

Please sign in to comment.