Skip to content

Commit

Permalink
add macos & windows jobs (#34)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #34

Test Plan:
https://github.com/facebookincubator/reindeer/actions/runs/7504352196/job/20431177281?pr=34

 {F1285882094}

Reviewed By: dtolnay

Differential Revision: D52732918

Pulled By: shayne-fletcher

fbshipit-source-id: ef43af58808112b0507932bbd31ba1f1cd384b4f
  • Loading branch information
shayne-fletcher authored and facebook-github-bot committed Jan 12, 2024
1 parent 16265a7 commit 8815ee8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 20 deletions.
17 changes: 0 additions & 17 deletions .github/actions/setup_linux_env/action.yml

This file was deleted.

11 changes: 8 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ on:
push:
pull_request:
jobs:
linux-build-and-test:
runs-on: ubuntu-latest
build-and-test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_linux_env
- uses: Swatinem/rust-cache@v2
- run: cargo build --locked
- run: cargo test

0 comments on commit 8815ee8

Please sign in to comment.