Skip to content

Commit c6541a0

Browse files
committed
SDK: Migrate Solana TS code to Solana dir (#433)
1 parent 0678648 commit c6541a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+7323
-12488
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ build-evm-prod: clean-evm
1717

1818
.PHONY: gen-evm-bindings
1919
gen-evm-bindings: build-evm-prod
20-
cd sdk && npm ci && cd evm && npm run generate
20+
npm ci && cd sdk/evm && npm run generate
2121

2222
#######################
2323
## TESTS

Tiltfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ docker_build(
5050
# CI tests
5151
docker_build(
5252
ref = "ntt-ci",
53-
context = "./sdk",
53+
context = "./",
54+
only=["./sdk", "./package.json", "./package-lock.json", "jest.config.ts", "tsconfig.json", "tsconfig.test.json"],
5455
dockerfile = "./sdk/Dockerfile",
5556
)
5657
k8s_yaml_with_ns("./sdk/ci.yaml")

sdk/jest.config.ts jest.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { JestConfigWithTsJest } from "ts-jest";
33
const jestConfig: JestConfigWithTsJest = {
44
verbose: true,
55
testTimeout: 10000000,
6-
roots: ["./__tests__"],
6+
roots: ["./sdk/__tests__"],
77
testMatch: ["**/*.test.ts"],
88
modulePathIgnorePatterns: ["mocks"],
99
preset: "ts-jest",

0 commit comments

Comments
 (0)