Skip to content

Commit ef943e4

Browse files
committed
rip
1 parent 6490b5b commit ef943e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/ci/conformance.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ import { getProgramId, getProgramSharedObjectPath, workingDirectory } from '../u
88

99
const programId = getProgramId('program');
1010
const programBinaryPath = getProgramSharedObjectPath('program');
11-
const baseBinaryPath = path.join(workingDirectory, 'target', 'dump-solana', 'base.so');
11+
const baseBinaryDirPath = path.join(workingDirectory, 'target', 'dump-solana');
12+
const baseBinaryPath = path.join(baseBinaryDirPath, 'base.so');
1213
const molluskFixturesPath = path.join(workingDirectory, 'program', 'fuzz', 'blob');
1314

1415
// Clone the program from mainnet-beta.
16+
await $`mkdir -p ${baseBinaryDirPath}`;
1517
await $`solana program dump -um ${programId} ${baseBinaryPath}`;
1618

1719
// Test this program against the cloned program for conformance with Mollusk.

0 commit comments

Comments
 (0)