-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* moves CI to individual files (WIP: path based actions) * enable conditional paths for workflows * perform full run if workflow is modified * base pfm simapp * bump interchaintest * fixed app params * use simapp for TestTimeoutOnForward * resolve ictest relative path * ibctm.RegisterInterfaces * fix: simapp IBC setup * extended block wait time * wip * rm old debugging files * remove ibcmock * add solomachine * transfer key tweaking * ibc-go/v7 v7.3.1 & regen mocks
- Loading branch information
1 parent
8fd49ec
commit 04e47eb
Showing
24 changed files
with
2,809 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# docker build . -t pfm:local | ||
# docker run --rm -it pfm:local q ibc-router | ||
|
||
FROM golang:1.21-alpine3.18 as builder | ||
|
||
RUN set -eux; apk add --no-cache git libusb-dev linux-headers gcc musl-dev make; | ||
|
||
ENV GOPATH="" | ||
|
||
ADD testing testing | ||
ADD LICENSE LICENSE | ||
|
||
COPY testing/contrib/devtools/Makefile contrib/devtools/Makefile | ||
COPY Makefile . | ||
|
||
COPY go.mod . | ||
COPY go.sum . | ||
|
||
RUN go mod download | ||
|
||
COPY . . | ||
|
||
RUN make build | ||
|
||
FROM alpine:3.18 | ||
|
||
COPY --from=builder /go/build/simd /bin/simd | ||
|
||
ENTRYPOINT ["simd"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.