Skip to content

Build against latest matrix-sdk-crypto #2

Build against latest matrix-sdk-crypto

Build against latest matrix-sdk-crypto #2

name: Build against latest matrix-sdk-crypto
on:
workflow_dispatch:
schedule:
- cron: '22 1 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
issues: write
jobs:
test-against-latest-matrix-sdk-crypto:
name: test-against-latest-matrix-sdk-crypto
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- name: Load cache
uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Update to the latest matrix-sdk-crypto version
run: cargo update matrix-sdk-crypto
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20.0
- name: Install yarn
run: npm install --global yarn
- name: Install dependencies
run: yarn install
- name: Build the WebAssembly + JavaScript binding
run: yarn build
- name: Test the JavaScript binding
run: yarn test
open-issue-on-failure:
if: failure()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JasonEtco/create-an-issue@1b14a70e4d8dc185e5cc76d3bec9eab20257b2c5 # v2.9.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
update_existing: true
filename: .github/latest_matrix_sdk_failed_issue_template.md
id: create-issue
- run: 'echo Created/updated ${{ steps.create-issue.outputs.url }}'