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(ci): move native into nigtly release wf #3860

Merged
merged 1 commit into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
15 changes: 10 additions & 5 deletions .github/actions/release-nightly/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ inputs:
secretDockerHubUser:
required: true
secretDockerHubPassword:
required: true
required: true
secretGithubToken:
required: true

runs:
using: "composite"

steps:
- name: Set up JDK ${{ inputs.javaVersion }}
uses: actions/setup-java@v2
Expand All @@ -48,11 +48,16 @@ runs:
uses: actions/setup-go@v2
with:
go-version: ${{ inputs.goVersion }}
- name: Smoke tests
- name: Common smoke tests
uses: ./.github/actions/e2e-common
with:
cluster-config-data: ${{ inputs.secretE2ECluster }}
cluster-kube-config-data: ${{ inputs.secretE2EKube }}
- name: Native smoke tests
uses: ./.github/actions/e2e-install-native
with:
cluster-config-data: ${{ inputs.secretE2ECluster }}
cluster-kube-config-data: ${{ inputs.secretE2EKube }}
- name: Cache modules
uses: actions/cache@v1
with:
Expand Down Expand Up @@ -101,15 +106,15 @@ runs:
with:
artifacts: "./camel-k-client*.tar.gz"
body: |
Apache Camel K ${{ env.VERSION }} build for testing (unstable). This nightly release is using
Apache Camel K ${{ env.VERSION }} build for testing (unstable). This nightly release is using
an **unsupported** operator image published as `${{ env.IMAGE_NAME }}:${{ env.VERSION }}`

To test it, download the client for your OS and run:

```
kamel install --olm=false --maven-repository=${{ env.MAVEN_REPOSITORY }}
```

NOTE: last updated on ${{ env.UPD_DATE }}
token: ${{ inputs.secretGithubToken }}
draft: false
Expand Down
71 changes: 0 additions & 71 deletions .github/workflows/native.yaml

This file was deleted.