-
Notifications
You must be signed in to change notification settings - Fork 934
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #938 from zouyx/add1.5.5
Ftr: Release 1.5.5-rc1
- Loading branch information
Showing
208 changed files
with
2,805 additions
and
1,643 deletions.
There are no files selected for viewing
This file contains 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 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,20 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "develop" | ||
|
||
- package-ecosystem: "github-actions" | ||
# Workflow files stored in the | ||
# default location of `.github/workflows` | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "develop" |
This file contains 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,54 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [master, ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [master] | ||
schedule: | ||
- cron: '0 4 * * 5' | ||
|
||
jobs: | ||
analyse: | ||
name: Analyse | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
# We must fetch at least the immediate parents so that if this is | ||
# a pull request then we can checkout the head. | ||
fetch-depth: 2 | ||
|
||
# If this run was triggered by a pull request event, then checkout | ||
# the head of the pull request instead of the merge commit. | ||
- run: git checkout HEAD^2 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
# Override language selection by uncommenting this and choosing your languages | ||
# with: | ||
# languages: go, javascript, csharp, python, cpp, java | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v1 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 https://git.io/JvXDl | ||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines | ||
# and modify them (or add more) to build your code if your project | ||
# uses a compiled language | ||
|
||
#- run: | | ||
# make bootstrap | ||
# make release | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
This file contains 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 |
---|---|---|
|
@@ -19,49 +19,92 @@ jobs: | |
os: | ||
- ubuntu-latest | ||
|
||
env: | ||
DING_TOKEN: ${{ secrets.DING_TOKEN }} | ||
DING_SIGN: ${{ secrets.DING_SIGN }} | ||
|
||
steps: | ||
|
||
- name: Set up Go 1.x | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go_version }} | ||
id: go | ||
- name: Set up Go 1.x | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go_version }} | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
# Cache | ||
path: ~/go/pkg/mod | ||
# Cache key | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
# An ordered list of keys to use for restoring the cache if no cache hit occurred for key | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Get dependencies | ||
run: | | ||
if [ -f Gopkg.toml ]; then | ||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure | ||
else | ||
go get -v -t -d ./... | ||
fi | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
- name: Verify | ||
run: | | ||
make verify | ||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
# Cache | ||
path: ~/go/pkg/mod | ||
# Cache key | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
# An ordered list of keys to use for restoring the cache if no cache hit occurred for key | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Integrate Test | ||
run: | | ||
chmod +x integrate_test.sh && ./integrate_test.sh | ||
- name: Get dependencies | ||
run: | | ||
if [ -f Gopkg.toml ]; then | ||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure | ||
else | ||
go get -v -t -d ./... | ||
fi | ||
- name: Post Coverage | ||
run: bash <(curl -s https://codecov.io/bash) | ||
|
||
- name: License Check | ||
run: | | ||
go fmt ./... && [[ -z `git status -s` ]] | ||
sh before_validate_license.sh | ||
chmod u+x /tmp/tools/license/license-header-checker | ||
/tmp/tools/license/license-header-checker -v -a -r -i vendor /tmp/tools/license/license.txt . go && [[ -z `git status -s` ]] | ||
- name: Hello world | ||
run: echo Hello world ${{ secrets.DING_TOKEN }} ${{ secrets.DING_SIGN }} | ||
|
||
- name: Test | ||
run: | | ||
chmod u+x before_ut.sh && ./before_ut.sh | ||
go mod vendor && go test ./... -coverprofile=coverage.txt -covermode=atomic | ||
chmod +x integrate_test.sh && ./integrate_test.sh | ||
# Because the contexts of push and PR are different, there are two Notify. | ||
# Notifications are triggered only in the dubbogo/gost repository. | ||
- name: DingTalk Message Notify only Push | ||
uses: zcong1993/[email protected] | ||
# Whether job is successful or not, always () is always true. | ||
if: | | ||
always() && | ||
github.event_name == 'push' && | ||
github.repository == 'apache/dubbo-go' | ||
with: | ||
# DingDing bot token | ||
dingToken: ${{ env.DING_TOKEN }} | ||
secret: ${{ env.DING_SIGN }} | ||
# Post Body to send | ||
body: | | ||
{ | ||
"msgtype": "markdown", | ||
"markdown": { | ||
"title": "Github Actions", | ||
"text": "## Github Actions \n - name: CI \n - repository: ${{ github.repository }} \n - trigger: ${{ github.actor }} \n - event: ${{ github.event_name }} \n - ref: ${{ github.ref }} \n - status: [${{ job.status }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) \n - environment: ${{ runner.os }} \n > SHA: [${{ github.sha }}](${{ github.event.compare }})" | ||
} | ||
} | ||
- name: Coverage | ||
run: bash <(curl -s https://codecov.io/bash) | ||
- name: DingTalk Message Notify only PR | ||
uses: zcong1993/[email protected] | ||
if: | | ||
always() && | ||
github.event_name == 'pull_request' && | ||
github.repository == 'dubbogo/gost' | ||
with: | ||
dingToken: ${{ env.DING_TOKEN }} | ||
secret: ${{ env.DING_SIGN }} | ||
body: | | ||
{ | ||
"msgtype": "markdown", | ||
"markdown": { | ||
"title": "Github Actions", | ||
"text": "## Github Actions \n - name: CI \n - repository: ${{ github.repository }} \n - pr_title: **${{ github.event.pull_request.title }}** \n - trigger: ${{ github.actor }} \n - event: ${{ github.event_name }} \n - ref: [${{ github.ref }}](${{ github.event.pull_request._links.html.href }}) \n - status: [${{ job.status }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) \n - environment: ${{ runner.os }} \n > SHA: [${{ github.sha }}](${{ github.event.pull_request._links.html.href }})" | ||
} | ||
} |
This file contains 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 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 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.