Skip to content

Commit

Permalink
Merge pull request #2 from apache/master
Browse files Browse the repository at this point in the history
merge apache branch
  • Loading branch information
cocodroid authored Feb 21, 2023
2 parents fb0939f + f30f720 commit e0eda7d
Show file tree
Hide file tree
Showing 1,238 changed files with 81,877 additions and 26,016 deletions.
4 changes: 3 additions & 1 deletion .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

github:
description: EventMesh is a dynamic event-driven application runtime used to decouple the application and backend middleware layer, which supports a wide range of use cases that encompass complex multi-cloud, widely distributed topologies using diverse technology stacks.
description: EventMesh is a fully serverless platform used to build distributed event-driven applications.
homepage: https://eventmesh.apache.org/
labels:
- pubsub
Expand All @@ -36,6 +36,8 @@ github:
- multi-runtime
- microservice
- state-management
- hacktoberfest
- hacktoberfest2022
enabled_merge_buttons:
squash: true
merge: true
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
-->

<!--
(If this PR fixes a GitHub issue, please add `Fixes #<XXX>` or `Cloese #<XXX>`.)
(If this PR fixes a GitHub issue, please add `Fixes #<XXX>` or `Closes #<XXX>`.)
-->

Fixes #<XXXX>.
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
Expand All @@ -49,16 +49,17 @@ jobs:
languages: ${{ matrix.language }}

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}

- name: Build
run: ./gradlew clean build jar dist jacocoTestReport

- name: Install plugin
run: ./gradlew installPlugin

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v1

Expand All @@ -71,13 +72,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Check license header
uses: apache/skywalking-eyes@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Check third party dependencies
run: |
run: |
./gradlew clean jar dist -x test -x checkstyleMain -x javaDoc && ./gradlew installPlugin && ./gradlew tar && sh tools/dependency-check/check-dependencies.sh && echo "Thirty party dependencies check success"
52 changes: 52 additions & 0 deletions .github/workflows/eventmesh-server-go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#
# 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: "Continuous Integration of EventMesh Server Go"

on:
push:
branches: ['*']
pull_request:
branches: ['*']

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version-file: 'eventmesh-server-go/go.mod'
- run: go version

- name: Download components
run: go mod tidy
working-directory: eventmesh-server-go

- name: Build application
run: make build
working-directory: eventmesh-server-go

- name: Test application
run: make test
working-directory: eventmesh-server-go
5 changes: 3 additions & 2 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ jobs:
Want to get closer to the community?
WeChat Group:
![wechat_qr](https://github.com/apache/incubator-eventmesh/blob/master/docs/images/contact/wechat-assistant.jpg?raw=true)
|WeChat Assistant|WeChat Public Account|Slack|
|-|-|-|
|<img src="docs/images/contact/wechat-assistant.jpg" width="128"/>|<img src="docs/images/contact/wechat-official.jpg" width="128"/>|[Join Slack Chat](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-1ooav8slu-ijUI98MiEI501jhK1cabKQ)|
Mailing Lists:
| Name | Description |Subscribe |Unsubscribe|Archive
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ logs
*.iws
*.class
*.log
*.log.*
.idea
build
.classpath
Expand Down
3 changes: 2 additions & 1 deletion .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ header:
- '**/Cargo.lock'
- 'LICENSE'
- 'NOTICE'
- 'DISCLAIMER-WIP'
- 'DISCLAIMER'
- 'gradlew'
- 'gradlew.bat'
- '**/*.txt'
- 'DISCLAIMER'

comment: on-failure
109 changes: 0 additions & 109 deletions CONTRIBUTING.md

This file was deleted.

99 changes: 0 additions & 99 deletions CONTRIBUTING.zh-CN.md

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache EventMesh (incubating)
Copyright 2021-2022 The Apache Software Foundation
Copyright 2021-2023 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Loading

0 comments on commit e0eda7d

Please sign in to comment.