mirror of
https://github.com/wez/wezterm.git
synced 2024-11-24 07:46:59 +03:00
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: package_posix
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
- cron: "10 3 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-16.04, macos-latest]
|
|
rust_toolchain: [stable]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install System Deps
|
|
run: sudo ./get-deps
|
|
- name: Install Rust
|
|
run: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${{ matrix.rust_toolchain }}
|
|
source $HOME/.cargo/env
|
|
rustup update ${{ matrix.rust_toolchain }}
|
|
- name: Package
|
|
run: |
|
|
source $HOME/.cargo/env
|
|
cargo build --release --all
|
|
bash ci/deploy.sh
|
|
- name: Move macOS Package
|
|
if: contains(matrix.os, 'macos')
|
|
run: |
|
|
mkdir pkg_
|
|
mv *.zip pkg_
|
|
- name: Move Linux Package
|
|
if: contains(matrix.os, 'ubuntu')
|
|
run: |
|
|
mkdir pkg_
|
|
mv *.deb pkg_
|
|
mv *.xz pkg_
|
|
- uses: actions/upload-artifact@master
|
|
if: contains(matrix.os, 'macos')
|
|
with:
|
|
name: macos
|
|
path: pkg_
|
|
- uses: actions/upload-artifact@master
|
|
if: contains(matrix.os, 'ubuntu')
|
|
with:
|
|
name: linux
|
|
path: pkg_
|