Use elfs from CI in tests (#167)

* Add Nano X build

* Use CI's build artifacts for CI's tests
This commit is contained in:
Jean P
2021-07-01 18:27:06 +02:00
committed by GitHub
parent 4294c0a1a3
commit ea87a0a646
5 changed files with 76 additions and 46 deletions

View File

@@ -15,8 +15,8 @@ const sim_options_nanox = {
};
const Resolve = require("path").resolve;
const NANOS_ELF_PATH = Resolve("elfs/ethereum_nanos.elf");
const NANOX_ELF_PATH = Resolve("elfs/ethereum_nanox.elf");
const NANOS_ELF_PATH = Resolve("elfs/ethereum_nanos/app.elf");
const NANOX_ELF_PATH = Resolve("elfs/ethereum_nanox/app.elf");
const TIMEOUT = 1000000;