Skip to content

Commit

Permalink
Add doc test
Browse files Browse the repository at this point in the history
  • Loading branch information
lemaitre-aneo committed Mar 22, 2024
1 parent 30eb64e commit f9bea05
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:
fail-fast: false
matrix:
job:
- { target: x86_64-unknown-linux-musl, os: linux, arch: amd64, runner: ubuntu-latest, cross: false }
- { target: x86_64-apple-darwin, os: darwin, arch: amd64, runner: macos-latest, cross: false }
- { target: x86_64-pc-windows-msvc, os: windows, arch: amd64, runner: windows-latest, cross: false }
- { target: x86_64-unknown-linux-gnu, os: linux, arch: amd64, runner: ubuntu-latest, cross: false }
- { target: x86_64-unknown-linux-musl, os: linux, arch: amd64, runner: ubuntu-latest }
- { target: x86_64-apple-darwin, os: darwin, arch: amd64, runner: macos-latest }
- { target: x86_64-pc-windows-msvc, os: windows, arch: amd64, runner: windows-latest }
runs-on: ${{ matrix.job.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Protoc
uses: arduino/setup-protoc@v3
if: not ${{ matrix.job.cross }}
- name: Install Cross Compiler
if: matrix.job.os == 'linux'
if: matrix.job.target == 'x86_64-unknown-linux-musl'
run: |
sudo apt-get update
sudo apt-get install -y musl-tools gcc-multilib
Expand Down

0 comments on commit f9bea05

Please sign in to comment.