Skip to content
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

(chore): cleanup ado, add badge #2966

Merged
merged 11 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/build_azure_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
Validate-unit_test:
name: Unit Test
runs-on: ubuntu-latest
if: !(inputs.skipTests)
if: ${{inputs.skipTests == false}}
schristoff marked this conversation as resolved.
Show resolved Hide resolved
steps:
- name: checkout
uses: actions/[email protected]
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- Validate-xbuild
runs-on:
- self-hosted
if: success() && !(inputs.skipTests)
if: success() && ${{inputs.skipTests == false}}
steps:
- name: checkout
uses: actions/[email protected]
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/porter-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
uses: "./.github/workflows/build_azure_pipelinesrelease_template.yml"
with:
registry: ghcr.io/getporter
shouldPublish: "${{inputs.shouldPublish}}"
skipTests: "${{inputs.skipTests}}"
shouldPublish: ${{inputs.shouldPublish}}
skipTests: ${{inputs.skipTests}}
3 changes: 1 addition & 2 deletions .github/workflows/porter-install-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ jobs:
shell: powershell
macos:
runs-on:
- self-hosted
- macOS-latest
- macos-latest
schristoff marked this conversation as resolved.
Show resolved Hide resolved
steps:
- name: checkout
uses: actions/[email protected]
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/protoc.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM golang:1.20
RUN apt-get update && apt-get -y install protobuf-compiler
RUN go install google.golang.org/protobuf/cmd/[email protected]
RUN go install google.golang.org/grpc/cmd/[email protected]
WORKDIR /proto
4 changes: 2 additions & 2 deletions .github/workflows/test-porter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
uses: "./.github/workflows/build_azure_pipelinesrelease_template.yml"
with:
registry: ghcr.io/getporter/test
shouldPublish: "${{ inputs.shouldPublish }}"
skipTests: "${{ inputs.skipTests }}"
shouldPublish: ${{ inputs.shouldPublish }}
skipTests: ${{ inputs.skipTests }}
4 changes: 2 additions & 2 deletions .github/workflows/testporterbot.porter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
uses: "./.github/workflows/build_azure_pipelinesrelease_template.yml"
with:
registry: ghcr.io/getporter/test
shouldPublish: "${{ inputs.shouldPublish }}"
skipTests: "${{ inputs.skipTests }}"
shouldPublish: ${{ inputs.shouldPublish }}
skipTests: ${{ inputs.skipTests }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img align="right" src="docs/static/images/porter-docs-header.svg" width="300px" />

[![CNCF Sandbox Project](docs/static/images/cncf-sandbox-badge.svg)](https://www.cncf.io/projects/porter/)
[![Build Status](https://dev.azure.com/getporter/porter/_apis/build/status/porter-canary?branchName=main)](https://dev.azure.com/getporter/porter/_build/latest?definitionId=26&branchName=main)
[![Build Status](https://github.com/getporter/porter/actions/workflows/porter.yml/badge.svg)](https://github.com/getporter/porter/actions/workflows/porter.yml)
<a href="https://getporter.org/find-issue" alt="Find an issue to work on">
<img src="https://img.shields.io/github/issues-search?label=%22help%20wanted%22%20issues&query=org%3Agetporter%20label%3A%22good%20first%20issue%22%2C%22help%20wanted%22%20no%3Aassignee" /></a>

Expand Down
30 changes: 0 additions & 30 deletions build/README.md

This file was deleted.

23 changes: 0 additions & 23 deletions build/azure-pipelines.canary.yml

This file was deleted.

26 changes: 0 additions & 26 deletions build/azure-pipelines.install.yml

This file was deleted.

74 changes: 0 additions & 74 deletions build/azure-pipelines.integration.yml

This file was deleted.

Loading
Loading