-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into manisbindra/add-install-uninstall-local-volu…
…me-mount-feature
- Loading branch information
Showing
39 changed files
with
831 additions
and
884 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,187 @@ | ||
# Environment variables defined in a calling workflow are not accessible to this reusable workflow. Refer to the documentation for further details on this limitation. | ||
name: build_pipelinesrelease_template | ||
on: | ||
workflow_call: | ||
inputs: | ||
goVersion: | ||
required: false | ||
default: 1.20.7 | ||
type: string | ||
registry: | ||
required: false | ||
default: ghcr.io/getporter/test | ||
type: string | ||
shouldPublish: | ||
required: false | ||
default: false | ||
type: boolean | ||
skipTests: | ||
required: false | ||
default: false | ||
type: boolean | ||
jobs: | ||
Validate-build: | ||
name: Native Compile | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Configure Agent | ||
run: go run mage.go ConfigureAgent | ||
- name: Native Build | ||
run: mage build | ||
shell: bash | ||
- name: Publish Native Binaries | ||
uses: actions/[email protected] | ||
with: | ||
name: build-bin | ||
path: "${{ github.workspace }}/bin" | ||
Validate-xbuild: | ||
name: Cross Compile | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Configure Agent | ||
run: go run mage.go ConfigureAgent | ||
- name: Cross Compile | ||
run: mage XBuildAll | ||
shell: bash | ||
- name: Publish Release Binaries | ||
uses: actions/[email protected] | ||
with: | ||
name: xbuild-bin | ||
path: "${{ github.workspace }}/bin" | ||
Validate-VetLint: | ||
name: Vet and Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Configure Agent | ||
run: go run mage.go ConfigureAgent | ||
- name: Vet | ||
run: mage Vet | ||
shell: bash | ||
- name: Lint | ||
run: mage Lint | ||
shell: bash | ||
Validate-unit_test: | ||
name: Unit Test | ||
runs-on: ubuntu-latest | ||
if: ${{inputs.skipTests == false}} | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Configure Agent | ||
run: go run mage.go ConfigureAgent | ||
- name: Unit Test | ||
run: mage TestUnit | ||
shell: bash | ||
Validate-integration_test: | ||
name: Integration Test | ||
needs: | ||
- Validate-build | ||
uses: "./.github/workflows/porter-integration-release.yml" | ||
with: | ||
registry: ${{inputs.registry}} | ||
Validate-smoke_test: | ||
name: Run smoke tests on | ||
needs: | ||
- Validate-xbuild | ||
runs-on: ubuntu-latest | ||
if: success() && ${{inputs.skipTests == false}} | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Download Cross-Compiled Porter Binaries | ||
uses: actions/[email protected] | ||
with: | ||
name: xbuild-bin | ||
path: bin | ||
- name: Setup Bin | ||
run: go run mage.go ConfigureAgent UseXBuildBinaries | ||
- name: Run Smoke Tests | ||
run: mage -v TestSmoke | ||
publish_binaries: | ||
name: Publish Binaries | ||
needs: | ||
- Validate-build | ||
- Validate-xbuild | ||
- Validate-VetLint | ||
- Validate-unit_test | ||
- Validate-integration_test | ||
- Validate-smoke_test | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
if: success() && inputs.shouldPublish | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Download Cross-Compiled Porter Binaries | ||
uses: actions/[email protected] | ||
with: | ||
name: xbuild-bin | ||
path: bin | ||
- name: Setup Bin | ||
run: go run mage.go ConfigureAgent UseXBuildBinaries | ||
- name: Publish Porter Binaries | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
VERSION: ${{github.ref_name}} | ||
run: mage PublishPorter PublishMixins | ||
publish-ghcr: | ||
env: | ||
DOCKER_REGISTRY: ${{inputs.registry}} | ||
DOCKER_USERNAME: getporterbot | ||
VERSION: ${{github.ref_name}} | ||
name: Publish Docker Images | ||
needs: | ||
- Validate-build | ||
- Validate-xbuild | ||
- Validate-VetLint | ||
- Validate-unit_test | ||
- Validate-integration_test | ||
- Validate-smoke_test | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
if: success() && inputs.shouldPublish | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ inputs.GOVERSION }}" | ||
- name: Download Cross-Compiled Porter Binaries | ||
uses: actions/[email protected] | ||
with: | ||
name: xbuild-bin | ||
path: bin | ||
- name: Setup Bin | ||
run: go run mage.go ConfigureAgent UseXBuildBinaries | ||
- name: Login to Container Registry | ||
uses: docker/[email protected] | ||
with: | ||
registry: "${{inputs.registry}}" | ||
username: "${{ github.actor }}" | ||
password: "${{ secrets.GITHUB_TOKEN }}" | ||
- name: Publish Docker Images to ${{inputs.registry}} | ||
run: PORTER_REGISTRY=${{inputs.registry}} mage PublishImages |
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
File renamed without changes.
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,45 @@ | ||
name: integ reusable workflow | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
test_name: | ||
type: string | ||
required: true | ||
registry: | ||
type: string | ||
required: true | ||
default: ghcr.io | ||
env: | ||
GOVERSION: 1.20.7 | ||
PORTER_INTEG_FILE: ${{inputs.test_name}}.go | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "${{ env.GOVERSION }}" | ||
cache: true | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
- name: Docker Login | ||
uses: docker/[email protected] | ||
with: | ||
registry: ${{inputs.registry}} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Configure Agent | ||
run: go run mage.go build | ||
shell: bash | ||
- name: Integration Test | ||
run: go run mage.go -v TestIntegration | ||
shell: bash |
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,27 @@ | ||
name: porter/porter-canary | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
shouldPublish: | ||
default: true | ||
type: boolean | ||
required: false | ||
skipTests: | ||
default: false | ||
type: boolean | ||
required: false | ||
push: | ||
branches: | ||
- main | ||
- release/* | ||
pull_request: | ||
branches: | ||
- split-builds | ||
jobs: | ||
build_pipelinesrelease_template: | ||
name: build_pipelinesrelease_template | ||
uses: "./.github/workflows/build_pipelinesrelease_template.yml" | ||
with: | ||
registry: ghcr.io/getporter | ||
shouldPublish: ${{inputs.shouldPublish}} | ||
skipTests: ${{inputs.skipTests}} |
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,34 @@ | ||
name: porter/porter-install-check | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- name: Test Install Script | ||
run: scripts/test/test-linux-install.sh | ||
shell: bash | ||
windows: | ||
runs-on: windows-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- name: Test Install Script | ||
run: scripts\test\test-windows-install.ps1 | ||
shell: powershell | ||
macos: | ||
runs-on: | ||
- macos-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- name: Test Install Script | ||
run: scripts/test/test-mac-install.sh | ||
shell: bash |
Oops, something went wrong.