Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add initial template two adic fri pcs #428

Merged
merged 6 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,26 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libomp-dev

- name: Add .bazelrc.user on linux
if: matrix.os == 'ubuntu-latest'
run: echo "build --config linux" > .bazelrc.user &&
echo "build --action_env=CARGO=$HOME/.cargo/bin/cargo" >> .bazelrc.user

- name: Add .bazelrc.user on macos
if: matrix.os == 'macos-latest-xlarge'
run: brew install coreutils &&
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH" &&
echo "build --config macos_arm64" > .bazelrc.user &&
echo "build --action_env=CARGO=$HOME/.cargo/bin/cargo" >> .bazelrc.user

- name: Build
run: bazel build -c fastbuild --config ${{ matrix.bazel_config }} //...
run: bazel build -c fastbuild //...

- name: Test Tachyon (fastbuild)
run: bazel test -c fastbuild --config ${{ matrix.bazel_config }} --test_output=errors --test_tag_filters -benchmark,-manual,-cuda //...
run: bazel test -c fastbuild --test_output=errors --test_tag_filters -benchmark,-manual,-cuda //...

- name: Test Tachyon (optimized)
run: bazel test -c opt --config ${{ matrix.bazel_config }} --test_output=errors --test_tag_filters -benchmark,-manual,-cuda //...
run: bazel test -c opt --test_output=errors --test_tag_filters -benchmark,-manual,-cuda //...

- name: Test OpenMP
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion .gitmessage
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Related: #<issue number>
# │ │
# │ └─⫸ Commit Scope: base|benchmark|build|c(subscope)|cc(subscope)|
# │ circom|crypto|device|examples|halo2|math|
# │ node(subscope)|rs(subscope)|zk
# │ node(subscope)|rs(subscope)|sp1|zk
# │
# └─⫸ Commit Type: build|chore|ci|docs|feat|fix|perf|refac|test
# ```
Expand Down
Loading
Loading