-
Notifications
You must be signed in to change notification settings - Fork 2
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 #436 from vshn/remove-packages
Remove syn package feature
- Loading branch information
Showing
861 changed files
with
14,853 additions
and
763 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -30,20 +30,3 @@ jobs: | |
# Ensure target branch for release is "master" | ||
commit: master | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
update-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: 'master' | ||
token: ${{ secrets.GH_ACTION_PAT }} | ||
- name: set tag env | ||
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
- name: Change version in package | ||
run: | | ||
yq -i '.parameters."pkg.appcat".componentVersion = "${{ env.TAG_VERSION }}"' package/main.yaml | ||
- uses: actions-js/[email protected] | ||
with: | ||
github_token: ${{ secrets.GH_ACTION_PAT }} | ||
message: "Update component version in package to ${{ env.TAG_VERSION }}" | ||
branch: 'master' |
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,21 +1,75 @@ | ||
name: Pull Request (global lints) | ||
|
||
name: Pull Request | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
env: | ||
COMPONENT_NAME: appcat | ||
|
||
jobs: | ||
linting: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
command: | ||
- lint_jsonnet | ||
- lint_yaml | ||
- lint_adoc | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run Asciidoc linter | ||
run: make lint_adoc | ||
- name: Run ${{ matrix.command }} | ||
run: make ${{ matrix.command }} | ||
|
||
editorconfig: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
instance: | ||
- defaults | ||
- exoscale | ||
- cloudscale | ||
- openshift | ||
- vshn | ||
- apiserver | ||
- controllers | ||
- minio | ||
- cloudscale-metrics-collector-cloud | ||
- cloudscale-metrics-collector-managed | ||
- exoscale-metrics-collector-cloud | ||
- exoscale-metrics-collector-managed | ||
defaults: | ||
run: | ||
working-directory: ${{ env.COMPONENT_NAME }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: ${{ env.COMPONENT_NAME }} | ||
- name: Compile component | ||
run: make test -e instance=${{ matrix.instance }} | ||
golden: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
instance: | ||
- defaults | ||
- exoscale | ||
- cloudscale | ||
- openshift | ||
- vshn | ||
- apiserver | ||
- controllers | ||
- minio | ||
- cloudscale-metrics-collector-cloud | ||
- cloudscale-metrics-collector-managed | ||
- exoscale-metrics-collector-cloud | ||
- exoscale-metrics-collector-managed | ||
defaults: | ||
run: | ||
working-directory: ${{ env.COMPONENT_NAME }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: snow-actions/[email protected] | ||
with: | ||
args: "check" | ||
path: ${{ env.COMPONENT_NAME }} | ||
- name: Golden diff | ||
run: make golden-diff -e instance=${{ matrix.instance }} |
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
Oops, something went wrong.