-
Notifications
You must be signed in to change notification settings - Fork 162
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 #1930 from openziti/release-next
Release v1.0.0
- Loading branch information
Showing
136 changed files
with
3,615 additions
and
5,302 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
uses: hmarr/[email protected] | ||
|
||
- name: Wait for other builds to complete | ||
uses: lewagon/[email protected].3 | ||
uses: lewagon/[email protected].4 | ||
with: | ||
ref: ${{ env.GITHUB_SHA }} | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
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,156 @@ | ||
name: release-validation | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
# cancel older, redundant runs of same workflow on same branch | ||
concurrency: | ||
group: ${{ github.workflow }}-${{github.event_name}}-${{ github.head_ref || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
GOFLAGS: "-trimpath" | ||
GOX_OUTPUT: "release/{{.Arch}}/{{.OS}}/{{.Dir}}" | ||
GOX_TEST_OUTPUT: "test/{{.Arch}}/{{.OS}}/bin/{{.Dir}}" | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: "us-east-2" | ||
gh_ci_key: ${{ secrets.GH_CI_KEY }} | ||
BUILD_NUMBER: ${{ format('{0}-{1}-{2}', github.run_id, github.run_number, github.run_attempt) }} | ||
|
||
|
||
jobs: | ||
link-validation: | ||
name: Link Validation | ||
# not applicable to forks. shouldn't run on release build | ||
if: github.repository_owner == 'openziti' | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: ./go.mod | ||
|
||
- name: Install Ziti CI | ||
uses: openziti/ziti-ci@v1 | ||
|
||
- name: Build and Test | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ziti_ci_gpg_key: ${{ secrets.ZITI_CI_GPG_KEY }} | ||
ziti_ci_gpg_key_id: ${{ secrets.ZITI_CI_GPG_KEY_ID }} | ||
shell: bash | ||
run: | | ||
$(go env GOPATH)/bin/ziti-ci configure-git | ||
$(go env GOPATH)/bin/ziti-ci generate-build-info common/version/info_generated.go version | ||
pushd zititest && go install ./... && popd | ||
go install -tags=all,tests ./... | ||
- name: Create Test Environment | ||
shell: bash | ||
run: | | ||
echo "ZITI_ROOT=$(go env GOPATH)/bin" >> "$GITHUB_ENV" | ||
$(go env GOPATH)/bin/links-test create -d links-test-${GITHUB_RUN_NUMBER} -n links-test-${GITHUB_RUN_NUMBER} -l environment=gh-fablab-links-test,ziti_version=$($(go env GOPATH)/bin/ziti-ci -q get-current-version) | ||
$(go env GOPATH)/bin/links-test up | ||
$(go env GOPATH)/bin/links-test exec validateUp | ||
- name: Run Loop Validation | ||
shell: bash | ||
timeout-minutes: 380 | ||
run: | | ||
echo "ZITI_ROOT=$(go env GOPATH)/bin" >> "$GITHUB_ENV" | ||
$(go env GOPATH)/bin/links-test exec-loop 4h sowChaos validateUp validateLinks | ||
- name: Create Logs Archive | ||
if: always() | ||
run: | | ||
$(go env GOPATH)/bin/links-test get files '*' "./logs/{{ .Id }}/" ./logs | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: links-test-logs-${{ github.run_id }} | ||
path: logs/ | ||
compression-level: 7 | ||
retention-days: 5 | ||
|
||
- name: Tear down Test Environment | ||
timeout-minutes: 30 | ||
if: always() | ||
shell: bash | ||
run: | | ||
$(go env GOPATH)/bin/links-test dispose | ||
sdk-terminator-validation: | ||
name: SDK Terminator Validation | ||
# not applicable to forks. shouldn't run on release build | ||
if: github.repository_owner == 'openziti' | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: ./go.mod | ||
|
||
- name: Install Ziti CI | ||
uses: openziti/ziti-ci@v1 | ||
|
||
- name: Build and Test | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ziti_ci_gpg_key: ${{ secrets.ZITI_CI_GPG_KEY }} | ||
ziti_ci_gpg_key_id: ${{ secrets.ZITI_CI_GPG_KEY_ID }} | ||
shell: bash | ||
run: | | ||
$(go env GOPATH)/bin/ziti-ci configure-git | ||
$(go env GOPATH)/bin/ziti-ci generate-build-info common/version/info_generated.go version | ||
pushd zititest && go install ./... && popd | ||
go install -tags=all,tests ./... | ||
- name: Create Test Environment | ||
shell: bash | ||
run: | | ||
echo "ZITI_ROOT=$(go env GOPATH)/bin" >> "$GITHUB_ENV" | ||
$(go env GOPATH)/bin/sdk-hosting-test create -d sdk-hosting-test-${GITHUB_RUN_NUMBER} -n sdk-hosting-test-${GITHUB_RUN_NUMBER} -l environment=gh-fablab-sdk-hosting-test,ziti_version=$($(go env GOPATH)/bin/ziti-ci -q get-current-version) | ||
$(go env GOPATH)/bin/sdk-hosting-test up | ||
$(go env GOPATH)/bin/sdk-hosting-test exec validateUp | ||
- name: Run SDK Terminator Validation | ||
shell: bash | ||
timeout-minutes: 380 | ||
run: | | ||
echo "ZITI_ROOT=$(go env GOPATH)/bin" >> "$GITHUB_ENV" | ||
$(go env GOPATH)/bin/sdk-hosting-test exec-loop 4h sowChaos validateUp validate | ||
- name: Create Logs Archive | ||
if: always() | ||
run: | | ||
$(go env GOPATH)/bin/sdk-hosting-test get files '*' "./logs/{{ .Id }}/" ./logs | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: sdk-hosting-test-logs-${{ github.run_id }} | ||
path: logs/ | ||
compression-level: 7 | ||
retention-days: 5 | ||
|
||
- name: Tear down Test Environment | ||
timeout-minutes: 30 | ||
if: always() | ||
shell: bash | ||
run: | | ||
$(go env GOPATH)/bin/sdk-hosting-test dispose | ||
Oops, something went wrong.