forked from apache/apisix-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'upstream/master' into github/master
* upstream/master: feat: release 3.0.0 (apache#2722) Revert "feat: release 2.16.0 (apache#2719)" (apache#2721) feat: release 2.16.0 (apache#2719) fix: plugin configuration lost in editor (apache#2718) fix: adapt APISIX plugin disabled (apache#2717) feat: basic support Apache APISIX 3.0.0 (apache#2701) feat: change etcd prefix for ssl and proto (apache#2693) fix: remove cases external service dependency (apache#2697) chore: simplify e2e environment (apache#2694) chore: optimize "allow_origins_by_regex tooltip" description (apache#2690) feat: release 2.15.0 (apache#2685) feat: basic support Apache APISIX 2.15.0 (apache#2680) feat: release 2.14.0 (apache#2677) fix: bump go version to 1.16 (apache#2678) feat: release 2.13.1 (apache#2658) feat: support more upstream scheme (apache#2675) feat: support purge method (apache#2674) feat: add enable flag to oidc function (apache#2672) # Conflicts: # web/package.json
- Loading branch information
Showing
116 changed files
with
6,431 additions
and
3,911 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,8 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: setup go | ||
uses: actions/setup-go@v3 | ||
|
@@ -40,17 +42,10 @@ jobs: | |
- name: Modify conf.yaml Configure for use by the manage-api cluster | ||
run: | | ||
sed -i 's/127.0.0.1:2379/172.16.238.10:2379/' ./api/conf/conf.yaml | ||
sed -i 's/127.0.0.1:2379/etcd:2379/' ./api/conf/conf.yaml | ||
sed -i '[email protected]@0.0.0.0/0@' ./api/conf/conf.yaml | ||
sed -i '/172.16.238.10:2379/a\ - 172.16.238.11:2379' ./api/conf/conf.yaml | ||
sed -i '/172.16.238.10:2379/a\ - 172.16.238.12:2379' ./api/conf/conf.yaml | ||
sed -i '[email protected]/0:[email protected]:9000@' ./api/conf/conf.yaml | ||
- name: download file Dockerfile-apisix | ||
working-directory: ./api/test/docker | ||
run: | | ||
curl -o Dockerfile-apisix https://raw.githubusercontent.com/apache/apisix-docker/master/alpine/Dockerfile | ||
sed -i 's/enabled: false/enabled: true/' ./api/conf/conf.yaml | ||
- name: build docker images | ||
working-directory: ./api/test/docker | ||
|
@@ -76,11 +71,13 @@ jobs: | |
docker logs docker_managerapi_1 | ||
- name: install ginkgo cli | ||
run: go install github.com/onsi/ginkgo/ginkgo@v1.16.5 | ||
run: go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo@latest | ||
|
||
- name: run test | ||
working-directory: ./api/test/e2e | ||
run: ginkgo -r | ||
run: | | ||
go mod download | ||
ginkgo -r --flake-attempts=3 -v | ||
- name: stop docker compose | ||
working-directory: ./api/test/docker | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.13.0 | ||
3.0.0 |
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.