8000 gha: change env. var and track right faasm version in integration tests by csegarragonz · Pull Request #813 · faasm/faasm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

gha: change env. var and track right faasm version in integration tests #813

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

Merged
merged 3 commits into from
Jan 8, 2024
Merged
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
13 changes: 8 additions & 5 deletions .github/workflows/azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
env:
CLUSTER_NAME_BASE: gha-cluster
FAASM_INI_FILE: ./faasm.ini
FAASM_VERSION: 0.10.2
WASM_VM: ${{ matrix.wasm_vm }}
FAASM_VERSION: 0.18.0
FAASM_WASM_VM: ${{ matrix.wasm_vm }}
steps:
- name: "Check out the experiment-base code"
uses: actions/checkout@v4
Expand All @@ -56,11 +56,14 @@ jobs:
./bin/inv_wrapper.sh cluster.credentials --name ${{ env.CLUSTER_NAME }}
working-directory: ${{ github.workspace }}/experiment-base
- name: "Install faasmctl"
run: pip3 install faasmctl==0.24.0
run: source ./bin/workon.sh && pip3 install faasmctl==0.24.0
working-directory: ${{ github.workspace }}/experiment-base
- name: "Deploy Faasm on k8s cluster"
run: faasmctl deploy.k8s --workers=4
run: source ./bin/workon.sh && faasmctl deploy.k8s --workers=4
working-directory: ${{ github.workspace }}/experiment-base
- name: "Build, upload and run a simple CPP function"
run: faasmctl cli.cpp --cmd "./bin/inv_wrapper.sh func demo hello func.upload demo hello func.invoke demo hello"
run: source ./bin/workon.sh && faasmctl cli.cpp --cmd "./bin/inv_wrapper.sh func demo hello func.upload demo hello func.invoke demo hello"
working-directory: ${{ github.workspace }}/experiment-base
- name: "Always delete AKS cluster"
if: always()
run: ./bin/inv_wrapper.sh cluster.delete --name ${{ env.CLUSTER_NAME }}
Expand Down
0