diff --git a/.github/actions/go-check-setup/action.yml b/.github/actions/go-check-setup/action.yml index f73276c..1b6f600 100644 --- a/.github/actions/go-check-setup/action.yml +++ b/.github/actions/go-check-setup/action.yml @@ -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 \ No newline at end of file + 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: rm -rf ./extern/filecoin-ffi/**/*_test.go \ No newline at end of file diff --git a/.github/actions/go-test-setup/action.yml b/.github/actions/go-test-setup/action.yml index a02842a..cb72dd1 100644 --- a/.github/actions/go-test-setup/action.yml +++ b/.github/actions/go-test-setup/action.yml @@ -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 \ No newline at end of file + 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: rm -rf ./extern/filecoin-ffi/**/*_test.go \ No newline at end of file