Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Remove ffi tests to stop CI from running them
Browse files Browse the repository at this point in the history
  • Loading branch information
masih committed Jul 25, 2023
1 parent 44d969c commit d5440ee
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/actions/go-check-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ runs:
run: sudo apt-get install -y libhwloc-dev ocl-icd-opencl-dev
- name: Install filecoin-ffi
shell: bash
run: make extern/filecoin-ffi
run: make extern/filecoin-ffi
# Removes all go test files to stop the unified CI from running ffi tests as part of the build.
# See: https://github.com/protocol/multiple-go-modules/issues/11
- name: Remove filecoin-ffi tests
shell: bash
run: find extern/filecoin-ffi -name '*_test.go' -exec rm {} \;
7 changes: 6 additions & 1 deletion .github/actions/go-test-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ runs:
run: sudo apt-get install -y libhwloc-dev ocl-icd-opencl-dev
- name: Install filecoin-ffi
shell: bash
run: make extern/filecoin-ffi
run: make extern/filecoin-ffi
# Removes all go test files to stop the unified CI from running ffi tests as part of the build.
# See: https://github.com/protocol/multiple-go-modules/issues/11
- name: Remove filecoin-ffi tests
shell: bash
run: find extern/filecoin-ffi -name '*_test.go' -exec rm {} \;

0 comments on commit d5440ee

Please sign in to comment.