From f9bea05c2ff1eb4ad990c5f092ab996721ad9ad0 Mon Sep 17 00:00:00 2001 From: Florian Lemaitre Date: Fri, 22 Mar 2024 09:00:31 +0100 Subject: [PATCH] Add doc test --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a0f9ca..6a41e11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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