-
Notifications
You must be signed in to change notification settings - Fork 7
37 lines (26 loc) · 924 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUNNER_ALLOW_RUNASROOT: 1
jobs:
ci-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Ansible
run: sudo bash scripts/install/1.install_basic.sh
- name: Install build
run: ansible-playbook -vvv scripts/install/2.ans_install_build.yml -i scripts/local_ansible_conf.ini
- name: Build Locally
run: ansible-playbook -vvv scripts/deploy_single_node/1.ans_build.yml -i scripts/local_ansible_conf.ini
- name: Integirty Test
run: ansible-playbook -vvv scripts/ans_integity_test.yml -i scripts/local_ansible_conf.ini
- name: Build WasmEdge Image
run: bash scripts/docker/WasmEdge/build_image.sh
- name: Build Waverless Image
run: bash scripts/docker/Waverless/build_image.sh