Skip to content

Commit

Permalink
Merge pull request #26 from ovechkin-dm/fix-arm64
Browse files Browse the repository at this point in the history
fix arm64
  • Loading branch information
ovechkin-dm authored Sep 25, 2023
2 parents 6f49b8d + 4725a2e commit a68b36f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 21 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,10 @@ jobs:
GOARCH: ${{ matrix.arch }}
run: go test -v -race -coverprofile="coverage.txt" -covermode=atomic -coverpkg=./mock/... ./...

- name: 'Test on [linux] arch [arm64]'
- name: 'Test on [linux] arch [arm64] TODO'
if: ${{ matrix.os == 'linux' && contains(fromJson('["arm64"]'), matrix.arch) }}
run: go test -coverpkg=./mock/... ./...

- name: 'Test on [darwin] arch [arm64]'
if: ${{ matrix.os == 'darwin' && contains(fromJson('["arm64"]'), matrix.arch) }}
run: go test -coverpkg=./mock/... ./...

- name: 'Test on windows'
if: ${{ matrix.os == 'windows' && contains(fromJson('["amd64"]'), matrix.arch) }}
env:
Expand Down
6 changes: 2 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/ovechkin-dm/mockio

go 1.21

require (
github.com/ovechkin-dm/go-dyno v0.0.14
)
require github.com/ovechkin-dm/go-dyno v0.0.17

require github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc // indirect
require github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc
14 changes: 2 additions & 12 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/ovechkin-dm/go-dyno v0.0.14 h1:PqcZ1xWJCd6nWdkIRRdU4IyUdDlA5bjfJKSGXnM9seA=
github.com/ovechkin-dm/go-dyno v0.0.14/go.mod h1:CcJNuo7AbePMoRNpM3i1jC1Rp9kHEMyWozNdWzR+0ys=
github.com/ovechkin-dm/go-dyno v0.0.17 h1:hJK52gKQXOMFhMS3yPNveqqqvlRVdyNlLnt1niV9/EE=
github.com/ovechkin-dm/go-dyno v0.0.17/go.mod h1:CcJNuo7AbePMoRNpM3i1jC1Rp9kHEMyWozNdWzR+0ys=
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc h1:8bQZVK1X6BJR/6nYUPxQEP+ReTsceJTKizeuwjWOPUA=
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/timandy/routine v1.1.1 h1:6/Z7qLFZj3GrzuRksBFzIG8YGUh8CLhjnnMePBQTrEI=
github.com/timandy/routine v1.1.1/go.mod h1:OZHPOKSvqL/ZvqXFkNZyit0xIVelERptYXdAHH00adQ=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 comments on commit a68b36f

Please sign in to comment.