This repository has been archived by the owner on May 19, 2024. It is now read-only.
Add warp relay server #21
Workflow file for this run
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: Release | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
#FIXME: add support for on release | |
# Cancel previous runs of the same workflow on the same branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-warp: | |
defaults: | |
run: | |
working-directory: moq-server | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- host: macos-latest | |
target: x86_64-apple-darwin | |
bundles: dmg | |
- host: macos-latest | |
target: aarch64-apple-darwin | |
bundles: dmg | |
- host: windows-latest | |
target: x86_64-pc-windows-msvc | |
bundles: msi | |
# - host: windows-latest | |
# target: aarch64-pc-windows-msvc | |
- host: ubuntu-20.04 | |
target: x86_64-unknown-linux-gnu | |
bundles: appimage | |
# - host: ubuntu-20.04 | |
# target: x86_64-unknown-linux-musl | |
# - host: ubuntu-20.04 | |
# target: aarch64-unknown-linux-gnu | |
# - host: ubuntu-20.04 | |
# target: aarch64-unknown-linux-musl | |
# - host: ubuntu-20.04 | |
# target: armv7-unknown-linux-gnueabihf | |
name: Warp for ${{ matrix.settings.target }} | |
runs-on: ${{ matrix.settings.host }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Rust | |
id: toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.settings.target }} | |
toolchain: stable | |
components: clippy, rustfmt | |
- name: Cache Rust Dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: false | |
prefix-key: 'v0-rust-deps' | |
shared-key: ${{ matrix.settings.target }} | |
- name: Build | |
run: cargo build --target ${{ matrix.settings.target }} --manifest-path ./moq-pub/Cargo.toml --release | |
- name: Copy and rename artifacts (Linux) | |
if: ${{ matrix.settings.host == 'ubuntu-20.04' }} | |
run: | | |
cp target/${{ matrix.settings.target }}/release/moq-pub ./warp | |
- name: Copy and rename artifacts (Windows) | |
if: ${{ matrix.settings.host == 'windows-latest' }} | |
run: | | |
cp "target/${{ matrix.settings.target }}/release/moq-pub.exe" ./warp.exe | |
- name: Copy and rename artifacts (macOS) | |
if: ${{ matrix.settings.host == 'macos-latest' }} | |
run: | | |
cp target/${{ matrix.settings.target }}/release/moq-pub ./warp | |
- name: Publish artifacts (${{ matrix.settings.host }}) | |
if: ${{ matrix.settings.host == 'windows-latest' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: warp-${{ matrix.settings.target }}- | |
path: ./moq-server/warp.exe | |
if-no-files-found: error | |
retention-days: 5 | |
- name: Publish artifacts (${{ matrix.settings.host }}) | |
if: ${{ matrix.settings.host != 'windows-latest' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: warp-${{ matrix.settings.target }} | |
path: ./moq-server/warp | |
if-no-files-found: error | |
retention-days: 5 |