mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
Some checks are pending
tinymist::ci / announce (push) Blocked by required conditions
tinymist::ci / Duplicate Actions Detection (push) Waiting to run
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Waiting to run
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Waiting to run
tinymist::ci / prepare-build (push) Waiting to run
tinymist::ci / build (push) Blocked by required conditions
tinymist::gh_pages / build-gh-pages (push) Waiting to run
64 lines
2.3 KiB
YAML
64 lines
2.3 KiB
YAML
name: tinymist::check-e2e
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
plan:
|
|
description: 'A description of the plan input'
|
|
required: true # or false, depending on whether the input is mandatory
|
|
type: string # or other appropriate type like boolean, number, etc.
|
|
|
|
env:
|
|
RUSTFLAGS: '-Dwarnings'
|
|
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
|
|
CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER: arm-linux-gnueabihf-gcc
|
|
|
|
jobs:
|
|
checks-e2e:
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- os: windows-2022
|
|
rust-target: x86_64-pc-windows-msvc
|
|
platform: win32
|
|
arch: x64
|
|
- os: windows-latest
|
|
rust-target: x86_64-pc-windows-msvc
|
|
platform: win32
|
|
arch: x64
|
|
- os: ubuntu-22.04
|
|
rust-target: x86_64-unknown-linux-gnu
|
|
platform: linux
|
|
arch: x64
|
|
- os: ubuntu-latest
|
|
rust-target: x86_64-unknown-linux-gnu
|
|
platform: linux
|
|
arch: x64
|
|
- os: macos-latest
|
|
rust-target: aarch64-apple-darwin
|
|
platform: darwin
|
|
arch: arm64
|
|
name: E2E Tests (${{ matrix.platform }}-${{ matrix.arch }} on ${{ matrix.os }})
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Download tinymist binary artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: artifacts-build-local-${{ matrix.rust-target }}
|
|
path: editors/vscode/out
|
|
- name: Unzip tinymist binary artifact (Windows)
|
|
run: 7z x -y -oeditors/vscode/out editors/vscode/out/tinymist-${{ matrix.rust-target }}.zip
|
|
if: matrix.platform == 'win32'
|
|
- name: Unzip tinymist binary artifact (Linux)
|
|
run: |
|
|
tar -xvf editors/vscode/out/tinymist-${{ matrix.rust-target }}.tar.gz -C editors/vscode/out
|
|
mv editors/vscode/out/tinymist-${{ matrix.rust-target }}/tinymist editors/vscode/out/tinymist
|
|
if: matrix.platform != 'win32'
|
|
- name: Test Tinymist (E2E)
|
|
run: cargo test -p tests -- e2e
|
|
- name: Upload Tinymist E2E Test Snapshot
|
|
if: always()
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: e2e-snapshot-${{ matrix.rust-target }}-${{ matrix.os }}
|
|
path: target/e2e
|