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

refactor: circle ci scripts #1510

Merged
merged 46 commits into from
Dec 10, 2024
Merged
Changes from 3 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
6707e01
chore: add more memory to node image for circleci
rodrigopavezi Dec 5, 2024
07ebaf9
test: change trigger to run next release in the current branch
rodrigopavezi Dec 5, 2024
d122efa
fix: ci trigger
rodrigopavezi Dec 5, 2024
4f5eb7e
chore: revert test
rodrigopavezi Dec 5, 2024
b3fcbde
chore: remove --canary from next release
rodrigopavezi Dec 5, 2024
8c5a243
fix: improve ci
rodrigopavezi Dec 6, 2024
1fde94a
fix: syntax issu
rodrigopavezi Dec 6, 2024
827d998
fix: build with lerna
rodrigopavezi Dec 6, 2024
7a1a993
fix: run lint and build before tests only once
rodrigopavezi Dec 6, 2024
a3f9ecb
fix: install
rodrigopavezi Dec 6, 2024
62fe275
fix: build contracts
rodrigopavezi Dec 6, 2024
619615a
fix: build all before deploying test contracts
rodrigopavezi Dec 6, 2024
573e8c2
fix: lint call
rodrigopavezi Dec 6, 2024
7c28604
fix: lint again
rodrigopavezi Dec 6, 2024
e082d6e
fix: build smart contract dependecies first only
rodrigopavezi Dec 6, 2024
bf473d8
fix: change resource class
rodrigopavezi Dec 6, 2024
7e34e6e
revert: build all
rodrigopavezi Dec 6, 2024
c563bc5
fix: performance
rodrigopavezi Dec 6, 2024
9312fca
fix: tests
rodrigopavezi Dec 6, 2024
52f2fbc
fix: test for lit provider
rodrigopavezi Dec 6, 2024
f6182ff
fix: package lint
rodrigopavezi Dec 6, 2024
559b602
fix: include integration tests to nightly run
rodrigopavezi Dec 6, 2024
25a6656
fix: revert test-nightly
rodrigopavezi Dec 9, 2024
1bcc4f6
fix: resource_class for test nightly
rodrigopavezi Dec 9, 2024
ec07577
fix: per review suggestions
rodrigopavezi Dec 9, 2024
f29351f
Update .circleci/config.yml
rodrigopavezi Dec 9, 2024
0dc6d3f
fix: require tests before doing a next release
rodrigopavezi Dec 9, 2024
9e0d297
Merge branch 'fix/next-release' of https://github.com/RequestNetwork/…
rodrigopavezi Dec 9, 2024
77f4031
fix: test reports
rodrigopavezi Dec 9, 2024
dff9da1
fix: lint
rodrigopavezi Dec 9, 2024
5fea3f2
fix: eslint by ignoring specs
rodrigopavezi Dec 9, 2024
f64ebf8
Merge branch 'master' into fix/next-release
rodrigopavezi Dec 9, 2024
9e65353
fix: revert include
rodrigopavezi Dec 9, 2024
14c58f9
Merge branch 'fix/next-release' of https://github.com/RequestNetwork/…
rodrigopavezi Dec 9, 2024
01d4af8
Remove unused anchors
MantisClone Dec 9, 2024
fd5d178
Split long lines into multi lines
MantisClone Dec 10, 2024
5384939
Use new yarn deploy:contracts script
MantisClone Dec 10, 2024
683efd7
Rename test steps
MantisClone Dec 10, 2024
f8f850f
fix: test results reporting
rodrigopavezi Dec 10, 2024
4b5338f
fix: multiple line command
rodrigopavezi Dec 10, 2024
6bd11ca
fix: syntax issue
rodrigopavezi Dec 10, 2024
5db9b2a
fix: test reporting
rodrigopavezi Dec 10, 2024
7c3836e
test: store_test_results path
rodrigopavezi Dec 10, 2024
629d90e
chore: update store_test_results paths in CircleCI config for multipl…
rodrigopavezi Dec 10, 2024
6ac59b7
chore: update lerna publish scripts in package.json for improved rele…
rodrigopavezi Dec 10, 2024
e8c8179
Update package.json
rodrigopavezi Dec 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ references:
image_name: &image_name 'cimg/python:3.7'
node_image: &node_image
image: cimg/node:18.18
environment:
NODE_OPTIONS: '--max-old-space-size=4096'
ipfs_image: &ipfs_image
image: requestnetwork/request-ipfs:v0.13.0
ganache_image: &ganache_image
Expand Down Expand Up @@ -647,7 +649,7 @@ workflows:
filters:
branches:
only:
- master
- 'fix/next-release'
rodrigopavezi marked this conversation as resolved.
Show resolved Hide resolved

nightly:
triggers:
Expand Down
Loading