Manual Flow Testing #40
Workflow file for this run
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
name: Manual Flow Testing | |
on: workflow_dispatch | |
jobs: | |
prepare: | |
runs-on: ubuntu-latest | |
outputs: | |
languages: ${{ steps.prep-matrix.outputs.languages }} | |
language_paths: ${{ steps.prep-matrix.outputs.language_paths }} | |
env: | |
FUNC_VERSION: "knative-v1.16.1" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install func | |
uses: gauron99/knative-func-action@main | |
with: | |
version: ${{ env.FUNC_VERSION }} | |
name: f | |
- name: Prep Matrix | |
id: prep-matrix | |
run: | | |
## NOTE: ls -d returns absolute path | |
## GITHUB_WORKSPACE is the root directory | |
language_paths="$(ls -d ${GITHUB_WORKSPACE}/*/ | jq -R -s 'split("\n")[:-1]')" | |
languages="$(ls -d ${GITHUB_WORKSPACE}/*/ | xargs -n 1 basename | jq -R -s 'split("\n")[:-1]')" | |
# set output | |
echo language_paths=$language_paths >> $GITHUB_OUTPUT | |
echo languages=$languages >> $GITHUB_OUTPUT | |
deploy: | |
needs: prepare | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
language: ${{ fromJSON(needs.prepare.outputs.languages) }} | |
env: | |
ACTIONS_STEP_DEBUG: true | |
language_paths: ${{needs.prepare.outputs.language_paths}} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build Functions | |
run: | | |
language=${{matrix.language}} | |
echo "Current language: $language" | |
# This takes the array of paths, wraps it in single quotes for jq, then | |
# selects only the value that matches with language to get current | |
# language AND its full path (where the func template is) | |
language_path=$(echo '${{env.language_paths}}' | jq -r ".[] | select(contains(\"${{matrix.language}}\"))") | |
url="https://github.com/gauron99/func-templates" | |
WORKDIR=$(mktemp -d) | |
cd $WORKDIR | |
echo "Building funcs in language ${{matrix.language}}" | |
for template_dir_abs in $(ls -d $language_path*/); do | |
echo "ls -la ${GITHUB_WORKSPACE}" | |
ls -la ${GITHUB_WORKSPACE} | |
template=$(basename "$template_dir_abs") | |
echo "f create $language-$template -r=$url -l=$language -t=$template" | |
f create $language-$template -r "$url" -l "$language" -t "$template" | |
#FUNC_ENABLE_HOST_BUILDER=1 FUNC_BUILDER=host FUNC_CONTAINER=false FUNC_REGISTRY=docker.io/4141gauron3268 f | |
done |