-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from argentlabs/release/1.5.0
Release 1.5.0
- Loading branch information
Showing
106 changed files
with
13,179 additions
and
8,400 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
version: 2 | ||
|
||
job_common: &job_common | ||
docker: | ||
- image: circleci/node:8.12-stretch | ||
working_directory: ~/argent-contracts | ||
step_save_cache: &step_save_cache | ||
save_cache: | ||
paths: | ||
- ~/.cache/package-lock | ||
key: node-modules-{{ checksum "package-lock.json" }} | ||
step_restore_cache: &step_restore_cache | ||
restore_cache: | ||
keys: | ||
- node-modules-{{ checksum "package-lock.json" }} | ||
step_setup_global_packages: &step_setup_global_packages | ||
run: | ||
name: "Set up global packages" | ||
command: | | ||
npm install | ||
jobs: | ||
unit-test: | ||
<<: *job_common | ||
steps: | ||
- checkout | ||
- <<: *step_restore_cache | ||
- <<: *step_setup_global_packages | ||
- run: | ||
name: "Lint contracts" | ||
command: npm run lint:contracts | ||
- run: | ||
name: "Compiling external library contracts" | ||
command: npm run compile:lib | ||
- run: | ||
name: "Compiling contracts" | ||
command: npm run compile | ||
- run: | ||
name: "Running unit tests" | ||
command: npm run ganache >/dev/null 2>&1 & npm run test | ||
- run: | ||
name: "Testing deployment scripts" | ||
command: npm run ganache >/dev/null 2>&1 & npm run test:deployment | ||
- <<: *step_save_cache | ||
# Save test results to artifacts | ||
- store_test_results: | ||
path: test-results.xml | ||
- store_artifacts: | ||
path: test-results.xml | ||
|
||
workflows: | ||
version: 2 | ||
commit: | ||
jobs: | ||
- unit-test |
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 |
---|---|---|
|
@@ -30,6 +30,7 @@ utils/config/*.json | |
|
||
## Etherlime | ||
**/.etherlime-store | ||
flat | ||
|
||
|
||
|
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 @@ | ||
8.12.0 |
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,48 @@ | ||
node_modules | ||
migrations | ||
openzeppelin-solidity | ||
lib | ||
contracts/test/CryptoKitties.sol | ||
contracts/test/KyberNetworkTest.sol | ||
contracts/test/TestContract.sol | ||
contracts/test/TestERC20.sol | ||
contracts/test/TestERC721.sol | ||
contracts/test/argent/legacy/LegacyBaseWallet.sol | ||
contracts/test/argent/legacy/TokenTransfer.sol | ||
contracts/test/argent/utils/ERC20Approver.sol | ||
contracts/test/argent/utils/NewTestModule.sol | ||
contracts/test/argent/utils/NonCompliantGuardian.sol | ||
contracts/test/argent/utils/OldTestModule.sol | ||
contracts/test/argent/utils/TestDapp.sol | ||
contracts/test/argent/utils/TestModule.sol | ||
contracts/test/argent/utils/TestOnlyOwnerModule.sol | ||
contracts/test/compound/CErc20.sol | ||
contracts/test/compound/CEther.sol | ||
contracts/test/compound/CToken.sol | ||
contracts/test/compound/CarefulMath.sol | ||
contracts/test/compound/Comptroller.sol | ||
contracts/test/compound/ComptrollerInterface.sol | ||
contracts/test/compound/ComptrollerStorage.sol | ||
contracts/test/compound/EIP20Interface.sol | ||
contracts/test/compound/EIP20NonStandardInterface.sol | ||
contracts/test/compound/ErrorReporter.sol | ||
contracts/test/compound/Exponential.sol | ||
contracts/test/compound/InterestRateModel.sol | ||
contracts/test/compound/Maximillion.sol | ||
contracts/test/compound/PriceOracle.sol | ||
contracts/test/compound/PriceOracleProxy.sol | ||
contracts/test/compound/ReentrancyGuard.sol | ||
contracts/test/compound/SimplePriceOracle.sol | ||
contracts/test/compound/Unitroller.sol | ||
contracts/test/compound/WhitePaperInterestRateModel.sol | ||
contracts/test/maker/DS/DSAuth.sol | ||
contracts/test/maker/DS/DSMath.sol | ||
contracts/test/maker/DS/DSNote.sol | ||
contracts/test/maker/DS/DSStop.sol | ||
contracts/test/maker/DS/DSThing.sol | ||
contracts/test/maker/DS/DSToken.sol | ||
contracts/test/maker/DS/DSValue.sol | ||
contracts/test/maker/MockScdMcdMigration.sol | ||
contracts/test/maker/SaiTub.sol | ||
contracts/test/maker/SaiVox.sol | ||
contracts/test/maker/WETH9.sol |
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,14 @@ | ||
{ | ||
"extends": "solium:all", | ||
"plugins": ["security"], | ||
"rules": { | ||
"arg-overflow": ["warning", 5], | ||
"variable-declarations": "error", | ||
"security/no-inline-assembly": 0, | ||
"error-reason": "error", | ||
"max-len": "error", | ||
"no-trailing-whitespace": "error", | ||
"blank-lines": 0 | ||
} | ||
} | ||
|
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
Binary file not shown.
File renamed without changes.
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
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.