mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 14:54:16 +03:00
61b27c8089
Forgetting to update the submodules is a commonly reported build issue with an obscure error message: ``` CMake Error: The source directory "/home/USER/wezterm/target/debug/build/freetype-430fe24cb64c561c/out/zlib-src/zlib" does not appear to contain CMakeLists.txt. ``` this teaches the build.rs machinery to run the submodule update if it looks like it is needed.
53 lines
1.2 KiB
YAML
53 lines
1.2 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-10.14]
|
|
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 }}
|
|
- 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_
|