refactor(cargo.toml): upgrade and refine #357
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build_and_package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install runtime dependencies | |
run: sudo apt install -y --no-install-recommends libxkbcommon-dev libstdc++6 libopenxr-dev libx11-dev libxfixes-dev libgl1-mesa-dev libegl1-mesa-dev libgbm-dev libfontconfig-dev libjsoncpp-dev libxcb1-dev libglx-dev libxcb-glx0-dev libdrm-dev libwayland-dev libfreetype-dev libpng-dev | |
- name: Install build dependencies | |
run: sudo apt install -y --no-install-recommends cmake ninja-build | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Build server | |
run: cargo build --release | |
- name: Install appimagetool | |
run: | | |
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$(uname -m).AppImage -O /usr/local/bin/appimagetool; \ | |
chmod +x /usr/local/bin/appimagetool; \ | |
sed -i 's|AI\x02|\x00\x00\x00|' /usr/local/bin/appimagetool | |
- name: Install cargo-appimage | |
run: cargo install cargo-appimage | |
- name: Generate AppImage | |
run: cargo appimage | |
- name: Upload AppImage | |
uses: actions/upload-artifact@v2 | |
with: | |
name: appimage | |
path: '*.AppImage' |