-
Notifications
You must be signed in to change notification settings - Fork 2.9k
move etcd cluster in docker for CI #2225
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
29 commits
Select commit
Hold shift + click to select a range
58f1ab3
Merge pull request #1 from apache/master
EnableAsync 144d917
feat: move etcd cluster in docker for CI
EnableAsync 673f18d
change: no further etcd will be installed on ubuntu via apt
EnableAsync 6f1cbe7
bugfix: no further etcd will be installed on ubuntu via apt
EnableAsync fdcd00a
bugfix: no further etcd will be installed on ubuntu via apt
EnableAsync bcc5822
bugfix: install etcd-client in place of etcd
EnableAsync e42f44e
change: listen all etcd ports
EnableAsync 0fb3592
Merge branch 'master' of https://github.com/EnableAsync/apisix
EnableAsync 98e67bc
change: change etcd v3.4 to v3.2
EnableAsync 2a03206
change: use github action services
EnableAsync 0b27a5f
bugfix: add quotations
EnableAsync c629e04
bufix: remove `--listen-client-urls`
EnableAsync 7d15df3
Revert "change: use github action services"
EnableAsync fa81aed
revert: revert build.yml
EnableAsync 6301e9e
Merge branch 'master' into master
Yiyiyimu f80553d
change: use github action services
EnableAsync 1922feb
change: use github action services
EnableAsync 223903e
change: use github action services
EnableAsync 930124c
bugfix: fix whitespace
EnableAsync 4bd7868
change: separate macOS from linux
EnableAsync 8f0eb97
update: macOS.yml
EnableAsync 01069f1
change: change action yaml name
EnableAsync 1ad221b
Merge branch 'master' of https://github.com/EnableAsync/apisix
EnableAsync a87bf2f
change: allow etcd none authentication
EnableAsync d2f4778
change: use etcdctl v3.4.0
EnableAsync 82a8c09
bugfix: add execute permission
EnableAsync 1c1de3b
bugfix: add EOL
EnableAsync e512fa5
fix: code format
EnableAsync 6f70f27
Update linux_tengine_runner.sh
EnableAsync 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
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,36 @@ | ||
| name: CI macOS | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ master ] | ||
| pull_request: | ||
| branches: [ master ] | ||
|
|
||
| jobs: | ||
| build: | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| platform: [macos-latest] | ||
| os_name: [osx_openresty] | ||
|
|
||
| runs-on: ${{ matrix.platform }} | ||
| env: | ||
| SERVER_NAME: ${{ matrix.os_name }} | ||
|
|
||
|
|
||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: MacOS Before install | ||
| if: matrix.platform == 'macos-latest' | ||
| run: ./.travis/${{ matrix.os_name }}_runner.sh before_install | ||
|
|
||
| - name: MacOS Install | ||
| if: matrix.platform == 'macos-latest' | ||
| run: ./.travis/${{ matrix.os_name }}_runner.sh do_install | ||
|
|
||
| - name: MacOS Script | ||
| if: matrix.platform == 'macos-latest' | ||
| run: ./.travis/${{ matrix.os_name }}_runner.sh script |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| #!/bin/sh | ||
|
|
||
| # | ||
| # 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. | ||
| # | ||
|
|
||
| wget https://github.com/etcd-io/etcd/releases/download/v3.4.0/etcd-v3.4.0-linux-amd64.tar.gz | ||
| tar xf etcd-v3.4.0-linux-amd64.tar.gz | ||
| sudo cp etcd-v3.4.0-linux-amd64/etcdctl /usr/local/bin/ | ||
| rm -rf etcd-v3.4.0-linux-amd64 |
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.