Add https example #20
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: examples | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'info' | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install apt-get packages | |
run: | | |
echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc | |
sudo ACCEPT_EULA=Y apt-get update | |
sudo ACCEPT_EULA=Y apt-get upgrade | |
sudo apt-get install wget git curl software-properties-common build-essential | |
- name: Install Rust target for wasm | |
run: | | |
rustup target add wasm32-wasi | |
- name: Install WasmEdge | |
run: | | |
VERSION=0.13.5 | |
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | sudo bash -s -- --version=$VERSION -p /usr/local | |
sudo mkdir -p /usr/local/lib/wasmedge | |
wget https://github.com/WasmEdge/WasmEdge/releases/download/$VERSION/WasmEdge-plugin-wasmedge_rustls-$VERSION-ubuntu20.04_x86_64.tar.gz | |
tar -zxf WasmEdge-plugin-wasmedge_rustls-$VERSION-ubuntu20.04_x86_64.tar.gz | |
sudo mv libwasmedge_rustls.so /usr/local/lib/wasmedge | |
- name: Client example | |
run: | | |
cargo build --target wasm32-wasi --release | |
wasmedgec target/wasm32-wasi/release/http.wasm http.wasm | |
wasmedgec target/wasm32-wasi/release/https.wasm https.wasm | |
resp=$(wasmedge http.wasm 2>&1) | |
echo "$resp" | |
if [[ $resp == *"WasmEdge"* ]]; then | |
echo -e "Execution Success!" | |
else | |
echo -e "Execution Fail!" | |
exit 1 | |
fi | |
resp=$(wasmedge https.wasm 2>&1) | |
echo "$resp" | |
if [[ $resp == *"WasmEdge"* ]]; then | |
echo -e "Execution Success!" | |
else | |
echo -e "Execution Fail!" | |
exit 1 | |
fi |