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

Merge EventMesh Function branch to master #5019

Merged
merged 27 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8481187
EventMesh function admin (#4851)
sodaRyCN Apr 18, 2024
02bcd35
EventMesh function admin (#4853)
sodaRyCN Apr 19, 2024
02f6d44
Eventmesh function admin (#4854)
sodaRyCN Apr 22, 2024
859ad8d
EventMesh function connector runtime (#4858)
xwm1992 Apr 22, 2024
78942c4
[ISSUE #4931]Add Registry Module for Discovery AdminServer
sodaRyCN May 29, 2024
aa8f604
[ISSUES #4933]Add Admin Module
sodaRyCN May 29, 2024
1cb3b02
[ISSUE #4935] Add and Move the Pojo Used By Both Runtime and Admin to…
sodaRyCN May 29, 2024
cb1b7b8
[ISSUE #4937]fix gradle dependecy and add runtime v2
sodaRyCN May 29, 2024
b4d3b2a
[ISSUES #4939]add canal connector
sodaRyCN May 29, 2024
c673a19
fix conflicts with master
xwm1992 May 29, 2024
a224b51
fix missing apache header
xwm1992 May 29, 2024
864cda0
fix missing apache header
xwm1992 May 29, 2024
ae3cbfc
fix missing apache header
xwm1992 May 29, 2024
6ab26df
update gradle dependencies
xwm1992 May 29, 2024
0a5686e
fix admin server ci check error
xwm1992 May 29, 2024
9934aa1
fix admin server ci check error
xwm1992 May 29, 2024
715c595
fix ci checkStyle error
xwm1992 May 30, 2024
0b9f6d0
Merge branch 'master' of https://github.com/apache/eventmesh into eve…
xwm1992 May 30, 2024
bfafbfb
fix ci check error
xwm1992 May 31, 2024
3550ac3
[ISSUE #4979]Canal Connector supports bidirectional data synchronization
xwm1992 Jun 5, 2024
5f1c1af
add bash files for admin & runtime-v2
xwm1992 Jun 6, 2024
8f4748f
fix ack offset read & persist
xwm1992 Jun 28, 2024
50a204e
fix checkStyle error
xwm1992 Jun 28, 2024
ae621d4
[ISSUE #4979] Canal Connector supports bidirectional data synchroniza…
xwm1992 Jul 1, 2024
fb411ba
Merge branch 'eventmesh-function' of https://github.com/apache/eventm…
xwm1992 Jul 1, 2024
f2d7645
solve conflicts with master branch
xwm1992 Jul 1, 2024
4e638f5
fix http source connector test error
xwm1992 Jul 1, 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
Prev Previous commit
Next Next commit
fix missing apache header
  • Loading branch information
xwm1992 committed May 29, 2024
commit ae3cbfce87cf8635923a797703d241d98a0fe5a8
50 changes: 50 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

name: Docker
on:
release:
types: [released]

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
apache/eventmesh

- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./docker/Dockerfile_jdk8
context: ./
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.apache.eventmesh.admin.server.constatns;

public class AdminServerConstants {
Expand Down
Loading