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

test change to large #3

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ executors:
password: $DOCKER_PASSWORD
linux-others-executor: # this executor is for test-others job
working_directory: /go/src/github.com/klaytn/klaytn
resource_class: xlarge
resource_class: large
docker:
- image: klaytn/build_base:1.12-go.1.22.1-solc0.8.13-ubuntu-20.04
auth:
Expand Down Expand Up @@ -140,7 +140,7 @@ commands:
export GOPATH=~/go
export PATH=$HOME/go1.22.1/go/bin:$PATH
KLAYTN_VERSION=$(go run build/rpm/main.go version)
for item in << parameters.item >>; do aws s3 cp packages/${item}-*.tar.gz s3://$FRONTEND_BUCKET/packages/klaytn/$KLAYTN_VERSION/; done
for item in << parameters.item >>; do aws s3 cp packages/${item}-*.tar.gz s3://$FRONTEND_BUCKET/packages/kaia-test/$KLAYTN_VERSION/; done
rpm-tagging:
description: "rpm tagging for cypress"
steps:
Expand All @@ -159,7 +159,7 @@ commands:
for item in kcn kpn ken kscn kspn ksen kbn kgen homi; do
TARGET_RPM=$(find $item-linux-x86_64/rpmbuild/RPMS/x86_64/ | awk -v pat="$item(d)?-v" '$0~pat')
aws s3 cp $TARGET_RPM s3://$FRONTEND_BUCKET/packages/rhel/7/prod/
aws s3 cp $TARGET_RPM s3://$FRONTEND_BUCKET/packages/klaytn/$KLAYTN_VERSION/
aws s3 cp $TARGET_RPM s3://$FRONTEND_BUCKET/packages/kaia-test/$KLAYTN_VERSION/
done
rpm-tagging-baobab:
description: "rpm tagging for baobab"
Expand All @@ -176,7 +176,7 @@ commands:
for item in kcn kpn ken; do
TARGET_RPM=$(find $item-linux-x86_64/rpmbuild/RPMS/x86_64/ | awk -v pat="$item(d)?-baobab-v" '$0~pat')
aws s3 cp $TARGET_RPM s3://$FRONTEND_BUCKET/packages/rhel/7/prod/
aws s3 cp $TARGET_RPM s3://$FRONTEND_BUCKET/packages/klaytn/$KLAYTN_VERSION/
aws s3 cp $TARGET_RPM s3://$FRONTEND_BUCKET/packages/kaia-test/$KLAYTN_VERSION/
done
createrepo-update:
steps:
Expand Down Expand Up @@ -248,6 +248,7 @@ commands:
command: |
export version=$(go run build/rpm/main.go version) >> $BASH_ENV
echo "git tag $version"
git checkout test-cicd
git config --global user.email "[email protected]"
git config --global user.name "circleci-klaytn"
git tag -a $version -m "$CIRCLE_STAGE"
Expand Down Expand Up @@ -390,7 +391,7 @@ jobs:

test-others:
executor: linux-others-executor
resource_class: xlarge
resource_class: large
steps:
- checkout
- wait-other-containers-ready
Expand Down Expand Up @@ -422,7 +423,7 @@ jobs:

coverage:
executor: linux-others-executor
resource_class: xlarge
resource_class: large
steps:
- checkout
- wait-other-containers-ready
Expand Down Expand Up @@ -682,7 +683,7 @@ workflows:
- major-tagging:
filters:
branches:
only: master
only: test-cicd

nightly-coverage:
triggers:
Expand Down
2 changes: 1 addition & 1 deletion params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (
ReleaseNum = 0
VersionMajor = 0 // Major version component of the current release
VersionMinor = 9 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionPatch = 2 // Patch version component of the current release
)

// Version holds the textual version string.
Expand Down
Loading