name: Builds on: push: branches: ["main"] pull_request: branches: ["main"] env: CARGO_TERM_COLOR: always jobs: build: strategy: matrix: include: - os: windows-latest target: x86_64-pc-windows-msvc - os: windows-latest target: aarch64-pc-windows-msvc - os: macos-latest target: x86_64-apple-darwin - os: macos-latest target: aarch64-apple-darwin name: Build (${{ matrix.target }}) runs-on: ${{ matrix.os }} steps: - name: Install Protoc uses: arduino/setup-protoc@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Rust toolchain run: | rustup update --no-self-update stable rustup target add ${{ matrix.target }} - if: ${{ matrix.target == 'aarch64-pc-windows-msvc' }} run: | echo "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin" >> $GITHUB_PATH shell: bash - uses: actions/checkout@v3 with: submodules: true - name: Build run: cargo build --release --verbose --target ${{ matrix.target }} - name: Build examples working-directory: examples run: cargo build --release --verbose --target ${{ matrix.target }}