forked from probsys/hierarchical-irm
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update util_io so that integration tests work. Change cluster parser …
…to read additional new lines.
- Loading branch information
Showing
3 changed files
with
52 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This workflow will run integration tests. | ||
|
||
name: Integration Tests | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
jobs: | ||
run_tests: | ||
name: Run integration tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checking out repository | ||
uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run : | | ||
sudo apt-get update && sudo apt-get install -yq clang clang-format | ||
- name: Build everything | ||
run: | | ||
cd cxx && bazel build tests:all | ||
- name: Test C++ | ||
run: | | ||
./bazel-bin/tests/test_hirm_animals && \ | ||
./bazel-bin/tests/test_irm_two_relations && \ | ||
./bazel-bin/tests/test_misc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters