Skip to content

ci: add build jobs for linux and macos #18

ci: add build jobs for linux and macos

ci: add build jobs for linux and macos #18

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build server
run: cargo build --bin transistor-server --verbose
- name: Build client
run: cargo build --bin transistor-client --verbose
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Xvfb
run: xvfb-run x.org_application_binary
- name: Build server
run: cargo build --bin transistor-server --verbose
- name: Build client
run: cargo build --bin transistor-client --verbose
- name: Run server
run: cargo run --bin transistor-server --verbose
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build server
run: cargo build --bin transistor-server --verbose
- name: Build client
run: cargo build --bin transistor-client --verbose