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 204bf12
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/actions/go-check-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ runs:
steps:
- name: Install filecoin-ffi dependencies
shell: bash
if: ${{ runner.os == 'Linux' }}
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 {} \;
8 changes: 7 additions & 1 deletion .github/actions/go-test-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ runs:
steps:
- name: Install filecoin-ffi dependencies
shell: bash
if: ${{ runner.os == 'Linux' }}
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 204bf12

Please sign in to comment.