Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add ci pipeline and test pipeline #16

Merged
merged 1 commit into from
Feb 21, 2023
Merged

ci: add ci pipeline and test pipeline #16

merged 1 commit into from
Feb 21, 2023

Conversation

ray-lightscale
Copy link
Contributor

Add ci pipeline and test pipeline

  • test will be executed on push
  • ci is the dev branch, so it only runs on merge

Our docker hub is managed by lightscale

mobile/android_test.go Outdated Show resolved Hide resolved
Dockerfile Outdated Show resolved Hide resolved
@chokobole chokobole changed the title ci: Add ci pipeline and test pipeline ci: add ci pipeline and test pipeline Feb 21, 2023
@lightscale-github lightscale-github force-pushed the ci/pipeline branch 4 times, most recently from 0b1f923 to 8fd7aea Compare February 21, 2023 09:34
Copy link
Collaborator

@chokobole chokobole left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@lightscale-github lightscale-github force-pushed the ci/pipeline branch 2 times, most recently from f7407d3 to c9b491a Compare February 21, 2023 12:39
@chokobole chokobole merged commit a21e47a into dev Feb 21, 2023
@chokobole chokobole deleted the ci/pipeline branch February 21, 2023 13:48
chokobole pushed a commit that referenced this pull request Mar 8, 2023
This commit squashes the kanvas-geth fork history into a more maintainable
diff for rebasing upon upstream geth.

See https://github.com/wemixkanvas/go-ethereum/commits/op-geth-base
for more details about how op-geth changes geth code.

kanvas-geth changes:

- Merge pull request #17 from light-scale/fix/change-contract-address
- fix: change predeployed contract address
- Merge pull request #15 from light-scale/ci/lint
- Merge pull request #16 from light-scale/ci/pipeline
- ci: add ci pipeline and test pipeline
- ci: add worklows to run lint on push
- ci: change the style of the code so that linting succeeds
- Merge pull request #14 from light-scale/ci/test-disable
- disable unittest temporarily for CI introduction
- Merge pull request #13 from light-scale/feat/enable-tx-pool-sync-by-force
- feat: enable tx pool sync by force
- Merge pull request #11 from light-scale/feat/remove-daisy-chain
- feat: remove daisy chain
- Merge pull request #10 from light-scale/feat/set-pending-block-gas-limit
- Merge pull request #12 from light-scale/zktrie
- chore: upgrade zktrie library
- feat: enable setting pending block gas limit
- chore: rename optimism to kanvas
- ci: remove circle ci config
- Merge pull request #8 from light-scale/feat/add-fee-recipients-to-proof
- feat(core, eth): add Optimism{Base,L1}FeeRecipient to block trace
- feat: add Mint to TransactionTrace
- Merge pull request #5 from light-scale/feat/add-L1CostFunc-to-EVM-BlockContext
- fix(cmd): list ipcAPIs on alphabetical order
- fix(eth): add L1CostFunc to evm's block context
- refac(light): remove unneeded member variable
- perf(trie): disable preimage by default
- chore: rename voost to kanvas
- Merge pull request #3 from light-scale/feat/enable-use-keccak-for-codehash
- feat: use poseidon as code hash only with zktrie
- fix(cmd, core): load database with Zktrie when possible
- fix: fix segfault when referencing to Database
- fix(common, signer): make unit test passed

We wrapped code with comments like below to separate code change for
scroll-geth from op-geth.

```go
// [Scroll: START]
// changes for scroll-geth
// [Scroll: END]
```

scroll-geth changes:

- Merge pull request #1 from light-scale/feat/add-scroll-patches
- chore: add run_geth.sh
- feat: add GetBlockResultByNumberOrHash rpc
- feat: add CacheConfig to Backend interface
- feat(core): add some methods to StateDB interface
- feat: add MPTWitness to CacheConfig
- feat: use zktrie for state trie
- feat: apply poseidon to codehash
- feat(core): add ReturnValue to Receipt
- feat: add detailed contents to traces for zkevm
- feat(core/vm, eth/tracers): add CaptureStateAfter hook
- feat(core/vm): disable SelfDestruct opcode
- test(cmd, internal): add custom genesis test
chokobole pushed a commit that referenced this pull request Mar 8, 2023
This commit squashes the kanvas-geth fork history into a more maintainable
diff for rebasing upon upstream geth.

See https://github.com/wemixkanvas/go-ethereum/commits/op-geth-base
for more details about how op-geth changes geth code.

kanvas-geth changes:

- Merge pull request #17 from light-scale/fix/change-contract-address
- fix: change predeployed contract address
- Merge pull request #15 from light-scale/ci/lint
- Merge pull request #16 from light-scale/ci/pipeline
- ci: add ci pipeline and test pipeline
- ci: add worklows to run lint on push
- ci: change the style of the code so that linting succeeds
- Merge pull request #14 from light-scale/ci/test-disable
- disable unittest temporarily for CI introduction
- Merge pull request #13 from light-scale/feat/enable-tx-pool-sync-by-force
- feat: enable tx pool sync by force
- Merge pull request #11 from light-scale/feat/remove-daisy-chain
- feat: remove daisy chain
- Merge pull request #10 from light-scale/feat/set-pending-block-gas-limit
- Merge pull request #12 from light-scale/zktrie
- chore: upgrade zktrie library
- feat: enable setting pending block gas limit
- chore: rename optimism to kanvas
- ci: remove circle ci config
- Merge pull request #8 from light-scale/feat/add-fee-recipients-to-proof
- feat(core, eth): add Optimism{Base,L1}FeeRecipient to block trace
- feat: add Mint to TransactionTrace
- Merge pull request #5 from light-scale/feat/add-L1CostFunc-to-EVM-BlockContext
- fix(cmd): list ipcAPIs on alphabetical order
- fix(eth): add L1CostFunc to evm's block context
- refac(light): remove unneeded member variable
- perf(trie): disable preimage by default
- chore: rename voost to kanvas
- Merge pull request #3 from light-scale/feat/enable-use-keccak-for-codehash
- feat: use poseidon as code hash only with zktrie
- fix(cmd, core): load database with Zktrie when possible
- fix: fix segfault when referencing to Database
- fix(common, signer): make unit test passed

We wrapped code with comments like below to separate code change for
scroll-geth from op-geth.

```go
// [Scroll: START]
// changes for scroll-geth
// [Scroll: END]
```

scroll-geth changes:

- Merge pull request #1 from light-scale/feat/add-scroll-patches
- chore: add run_geth.sh
- feat: add GetBlockResultByNumberOrHash rpc
- feat: add CacheConfig to Backend interface
- feat(core): add some methods to StateDB interface
- feat: add MPTWitness to CacheConfig
- feat: use zktrie for state trie
- feat: apply poseidon to codehash
- feat(core): add ReturnValue to Receipt
- feat: add detailed contents to traces for zkevm
- feat(core/vm, eth/tracers): add CaptureStateAfter hook
- feat(core/vm): disable SelfDestruct opcode
- test(cmd, internal): add custom genesis test
chokobole pushed a commit that referenced this pull request Mar 8, 2023
This commit squashes the kanvas-geth fork history into a more maintainable
diff for rebasing upon upstream geth.

See https://github.com/wemixkanvas/go-ethereum/commits/op-geth-base
for more details about how op-geth changes geth code.

kanvas-geth changes:

- Merge pull request #17 from light-scale/fix/change-contract-address
- fix: change predeployed contract address
- Merge pull request #15 from light-scale/ci/lint
- Merge pull request #16 from light-scale/ci/pipeline
- ci: add ci pipeline and test pipeline
- ci: add worklows to run lint on push
- ci: change the style of the code so that linting succeeds
- Merge pull request #14 from light-scale/ci/test-disable
- disable unittest temporarily for CI introduction
- Merge pull request #13 from light-scale/feat/enable-tx-pool-sync-by-force
- feat: enable tx pool sync by force
- Merge pull request #11 from light-scale/feat/remove-daisy-chain
- feat: remove daisy chain
- Merge pull request #10 from light-scale/feat/set-pending-block-gas-limit
- Merge pull request #12 from light-scale/zktrie
- chore: upgrade zktrie library
- feat: enable setting pending block gas limit
- chore: rename optimism to kanvas
- ci: remove circle ci config
- Merge pull request #8 from light-scale/feat/add-fee-recipients-to-proof
- feat(core, eth): add Optimism{Base,L1}FeeRecipient to block trace
- feat: add Mint to TransactionTrace
- Merge pull request #5 from light-scale/feat/add-L1CostFunc-to-EVM-BlockContext
- fix(cmd): list ipcAPIs on alphabetical order
- fix(eth): add L1CostFunc to evm's block context
- refac(light): remove unneeded member variable
- perf(trie): disable preimage by default
- chore: rename voost to kanvas
- Merge pull request #3 from light-scale/feat/enable-use-keccak-for-codehash
- feat: use poseidon as code hash only with zktrie
- fix(cmd, core): load database with Zktrie when possible
- fix: fix segfault when referencing to Database
- fix(common, signer): make unit test passed

We wrapped code with comments like below to separate code change for
scroll-geth from op-geth.

```go
// [Scroll: START]
// changes for scroll-geth
// [Scroll: END]
```

scroll-geth changes:

- Merge pull request #1 from light-scale/feat/add-scroll-patches
- chore: add run_geth.sh
- feat: add GetBlockResultByNumberOrHash rpc
- feat: add CacheConfig to Backend interface
- feat(core): add some methods to StateDB interface
- feat: add MPTWitness to CacheConfig
- feat: use zktrie for state trie
- feat: apply poseidon to codehash
- feat(core): add ReturnValue to Receipt
- feat: add detailed contents to traces for zkevm
- feat(core/vm, eth/tracers): add CaptureStateAfter hook
- feat(core/vm): disable SelfDestruct opcode
- test(cmd, internal): add custom genesis test
chokobole pushed a commit that referenced this pull request Mar 9, 2023
This commit squashes the kanvas-geth fork history into a more maintainable
diff for rebasing upon upstream geth.

See https://github.com/wemixkanvas/go-ethereum/commits/op-geth-base
for more details about how op-geth changes geth code.

kanvas-geth changes:

- Merge pull request #17 from light-scale/fix/change-contract-address
- fix: change predeployed contract address
- Merge pull request #15 from light-scale/ci/lint
- Merge pull request #16 from light-scale/ci/pipeline
- ci: add ci pipeline and test pipeline
- ci: add worklows to run lint on push
- ci: change the style of the code so that linting succeeds
- Merge pull request #14 from light-scale/ci/test-disable
- disable unittest temporarily for CI introduction
- Merge pull request #13 from light-scale/feat/enable-tx-pool-sync-by-force
- feat: enable tx pool sync by force
- Merge pull request #11 from light-scale/feat/remove-daisy-chain
- feat: remove daisy chain
- Merge pull request #10 from light-scale/feat/set-pending-block-gas-limit
- Merge pull request #12 from light-scale/zktrie
- chore: upgrade zktrie library
- feat: enable setting pending block gas limit
- chore: rename optimism to kanvas
- ci: remove circle ci config
- Merge pull request #8 from light-scale/feat/add-fee-recipients-to-proof
- feat(core, eth): add Optimism{Base,L1}FeeRecipient to block trace
- feat: add Mint to TransactionTrace
- Merge pull request #5 from light-scale/feat/add-L1CostFunc-to-EVM-BlockContext
- fix(cmd): list ipcAPIs on alphabetical order
- fix(eth): add L1CostFunc to evm's block context
- refac(light): remove unneeded member variable
- perf(trie): disable preimage by default
- chore: rename voost to kanvas
- Merge pull request #3 from light-scale/feat/enable-use-keccak-for-codehash
- feat: use poseidon as code hash only with zktrie
- fix(cmd, core): load database with Zktrie when possible
- fix: fix segfault when referencing to Database
- fix(common, signer): make unit test passed

We wrapped code with comments like below to separate code change for
scroll-geth from op-geth.

```go
// [Scroll: START]
// changes for scroll-geth
// [Scroll: END]
```

scroll-geth changes:

- Merge pull request #1 from light-scale/feat/add-scroll-patches
- chore: add run_geth.sh
- feat: add GetBlockResultByNumberOrHash rpc
- feat: add CacheConfig to Backend interface
- feat(core): add some methods to StateDB interface
- feat: add MPTWitness to CacheConfig
- feat: use zktrie for state trie
- feat: apply poseidon to codehash
- feat(core): add ReturnValue to Receipt
- feat: add detailed contents to traces for zkevm
- feat(core/vm, eth/tracers): add CaptureStateAfter hook
- feat(core/vm): disable SelfDestruct opcode
- test(cmd, internal): add custom genesis test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants