-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (39 loc) · 1.21 KB
/
examples-encrypted-chat.yml
File metadata and controls
41 lines (39 loc) · 1.21 KB
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
38
39
40
41
name: examples-encrypted-chat
permissions: {}
on:
push:
branches:
- main
pull_request:
paths:
- examples/encrypted_chat/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/examples-encrypted-chat.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
examples-encrypted-chat-rust-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Backend Tests Encrypted Chat Rust Darwin
run: |
set -eExuo pipefail
cd examples/encrypted_chat/rust/backend
cargo build --release --target wasm32-unknown-unknown && cargo test
examples-encrypted-chat-rust-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Backend Tests Encrypted Chat Rust Linux
run: |
set -eExuo pipefail
cd examples/encrypted_chat/rust/backend
cargo build --release --target wasm32-unknown-unknown && cargo test