mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
68 lines
1.4 KiB
YAML
68 lines
1.4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- "v*"
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run tests
|
|
runs-on: self-hosted
|
|
steps:
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
target: x86_64-apple-darwin
|
|
profile: minimal
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run tests
|
|
run: cargo test --no-fail-fast
|
|
|
|
bundle:
|
|
name: Bundle app
|
|
runs-on: self-hosted
|
|
steps:
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
target: x86_64-apple-darwin
|
|
profile: minimal
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Create app bundle
|
|
run: bash ./script/bundle
|
|
|
|
- name: Upload app bundle to workflow run
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Zed.dmg
|
|
path: target/release/Zed.dmg
|
|
|
|
- uses: svenstaro/upload-release-action@v2
|
|
name: Upload app bundle to release
|
|
if: ${{ startsWith(github.github.ref, 'refs/tags/v') }}
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: target/release/Zed.dmg
|
|
asset_name: Zed.dmg
|
|
tag: ${{ github.ref }}
|
|
overwrite: true
|
|
body: ""
|