-
Notifications
You must be signed in to change notification settings - Fork 5
feat(ci,server,worker): implement schemata and items copy #1331
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
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
d5bd2da
add copy endpoint
nourbalaha 3ac705a
wip
nourbalaha e5bf984
add comments
nourbalaha 3637b2b
refactor
nourbalaha 940cd8e
wip
nourbalaha 66488fc
wip: server implementation
nourbalaha 1fed519
update copy model function name
nourbalaha 03bba70
wip: copier ci
nourbalaha 599555e
Merge branch 'main' into feat-server/schemata-item-copy
nourbalaha 2e19994
remove copy of the internal server files in worker docker image
nourbalaha 6cc70dd
wip: worker
nourbalaha ff5e8a4
wip: repo
nourbalaha 6f67abe
Merge branch 'main' into feat-server/schemata-item-copy
nourbalaha c246f47
apply new changes from worker to server
nourbalaha 8f4514c
refactor changes type
nourbalaha e233002
refactor copier in mongo
nourbalaha a4f7e43
refactor
nourbalaha 46bf7cc
feat: refactor copier main file
nourbalaha bf78f86
add e2e test
nourbalaha d14362a
wip: server test cases
nourbalaha 2fac5ce
wip: worker tests
nourbalaha d2f3636
update TestSchema_CopyFrom
nourbalaha e80cf07
refactor
nourbalaha d69c7e4
Merge branch 'main' into feat-server/schemata-item-copy
nourbalaha 31914d9
lint
nourbalaha c1c8124
requested changes copier
nourbalaha 43e3756
add key to params
nourbalaha 0ac1161
wip
nourbalaha cb5d2e2
refactor
nourbalaha 7382546
add a log after data successfully copied
nourbalaha 2d38a47
improve triggerCopyEvent logging
nourbalaha 086a8de
Merge branch 'main' into feat-server/schemata-item-copy
nourbalaha a798a8b
fix db URI
nourbalaha 90b5277
add more unit tests
nourbalaha ce70e17
Merge branch 'main' into feat-server/schemata-item-copy
nourbalaha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,106 @@ | ||
name: copier-build | ||
on: | ||
workflow_run: | ||
workflows: [ci-worker] | ||
types: [completed] | ||
branches: [main, release] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
info: | ||
name: Collect information | ||
runs-on: ubuntu-latest | ||
if: github.event.workflow_run.conclusion != 'failure' && github.event.repository.full_name == 'reearth/reearth-cms' && (github.event.workflow_run.head_branch == 'release' || !startsWith(github.event.workflow_run.head_commit.message, 'v')) | ||
outputs: | ||
sha_short: ${{ steps.info.outputs.sha_short }} | ||
new_tag: ${{ steps.info.outputs.new_tag }} | ||
new_tag_short: ${{ steps.info.outputs.new_tag_short }} | ||
name: ${{ steps.info.outputs.name }} | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Fetch tags | ||
run: git fetch --prune --unshallow --tags | ||
- name: Get info | ||
id: info | ||
# The tag name should be retrieved lazily, as tagging may be delayed. | ||
env: | ||
BRANCH: ${{ github.event.workflow_run.head_branch }} | ||
run: | | ||
echo "sha_short=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" | ||
if [[ "$BRANCH" = "release" ]]; then | ||
TAG=$(git tag --points-at HEAD) | ||
if [[ ! -z "$TAG" ]]; then | ||
echo "new_tag=$TAG" >> "$GITHUB_OUTPUT" | ||
echo "new_tag_short=${TAG#v}" >> "$GITHUB_OUTPUT" | ||
else | ||
echo "name=rc" >> "$GITHUB_OUTPUT" | ||
fi | ||
else | ||
echo "name=nightly" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Show info | ||
env: | ||
SHA_SHORT: ${{ steps.info.outputs.sha_short }} | ||
NEW_TAG: ${{ steps.info.outputs.new_tag }} | ||
NEW_TAG_SHORT: ${{ steps.info.outputs.new_tag_short }} | ||
NAME: ${{ steps.info.outputs.name }} | ||
run: echo "sha_short=$SHA_SHORT, new_tag=$NEW_TAG, new_tag_short=$NEW_TAG_SHORT, name=$NAME" | ||
|
||
docker: | ||
name: Build and push Docker image | ||
runs-on: ubuntu-latest | ||
needs: | ||
- info | ||
if: needs.info.outputs.name || needs.info.outputs.new_tag | ||
env: | ||
IMAGE_NAME: reearth/reearth-cms-copier | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Get options | ||
id: options | ||
env: | ||
TAG: ${{ needs.info.outputs.new_tag_short }} | ||
NAME: ${{ needs.info.outputs.name }} | ||
SHA: ${{ needs.info.outputs.sha_short }} | ||
run: | | ||
if [[ -n $TAG ]]; then | ||
PLATFORMS=linux/amd64,linux/arm64 | ||
VERSION=$TAG | ||
TAGS=$IMAGE_NAME:$TAG | ||
if [[ ! $TAG =~ '-' ]]; then | ||
TAGS+=,${IMAGE_NAME}:${TAG%.*} | ||
TAGS+=,${IMAGE_NAME}:${TAG%%.*} | ||
TAGS+=,${IMAGE_NAME}:latest | ||
fi | ||
else | ||
PLATFORMS=linux/amd64 | ||
VERSION=$SHA | ||
TAGS=$IMAGE_NAME:$NAME | ||
fi | ||
echo "platforms=$PLATFORMS" >> "$GITHUB_OUTPUT" | ||
echo "version=$VERSION" >> "$GITHUB_OUTPUT" | ||
echo "tags=$TAGS" >> "$GITHUB_OUTPUT" | ||
- name: Build and push docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./worker | ||
file: ./worker/copier.Dockerfile | ||
platforms: ${{ steps.options.outputs.platforms }} | ||
push: true | ||
build-args: VERSION=${{ steps.options.outputs.version }} | ||
tags: ${{ steps.options.outputs.tags }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.