Skip to content
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
7 changes: 6 additions & 1 deletion .github/actions/collect-fission-dump/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ runs:
steps:
- name: Collect Fission Dump
shell: bash
# Best effort: the dump must never mask the original job failure
# (e.g. when the fission CLI was never installed because setup failed).
run: |
command -v fission && fission support dump
if command -v fission; then
fission support dump || true
fi

- name: Archive fission dump
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.workflow-name }}-fission-dump
path: fission-dump/*.zip
retention-days: 5
if-no-files-found: ignore
5 changes: 3 additions & 2 deletions .github/actions/setup-cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ runs:
version: ${{ inputs.helm-version }}

- name: Kind Cluster
uses: engineerd/setup-kind@71e45b960fc8dd50b4aeabf6eb6ef2ca0920b4c1 # v0.6.2
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0
with:
image: ${{ inputs.kind-node-image }}
node_image: ${{ inputs.kind-node-image }}
version: ${{ inputs.kind-version }}
config: ${{ inputs.kind-config }}
cluster_name: kind

- name: Configuring and testing the Installation
shell: bash
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,7 @@ jobs:
uses: ./.github/actions/setup-cluster
- name: perl
if: steps.filter.outputs.perl == 'true'
uses: hiberbee/github-action-skaffold@1.27.0
with:
command: run
profile: perl
run: SKAFFOLD_PROFILE=perl make skaffold-run
php7:
runs-on: ubuntu-latest
needs: check
Expand Down
2 changes: 1 addition & 1 deletion perl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ It is implemented using the lightweight web application framework
Since Twiggy is implemented with [AnyEvent](https://metacpan.org/pod/AnyEvent),
you can write async code using AnyEvent in your function.

Looking for ready-to-run examples? See the [Perl examples directory](../../examples/perl).
Looking for ready-to-run examples? See the [Perl examples directory](./examples).

## Build this image

Expand Down
Loading