Skip to content

ci: add build jobs for linux and macos #22

ci: add build jobs for linux and macos

ci: add build jobs for linux and macos #22

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: Install dependencies
run: sudo apt-get install -y libxi-dev libxtst-dev
- name: Create Xvfb
run: |
export DISPLAY=:99
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
- 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