Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
name: asdf plugin test
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13]
Expand All @@ -34,12 +35,18 @@ jobs:
run: |
asdf plugin add ${{ matrix.tool.plugin }} https://github.com/cpp-linter/asdf-clang-tools.git

- name: Install and test ${{ matrix.tool.plugin }} ${{ matrix.version }} on ${{ matrix.os }}
- name: Retry plugin install
uses: nick-fields/retry@v3
with:
max_attempts: 5
timeout_minutes: 10
command: asdf install ${{ matrix.tool.plugin }} ${{ matrix.version }}
env:
ASDF_CLANG_TOOLS_MACOS_DEQUARANTINE: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Test ${{ matrix.tool.plugin }} ${{ matrix.version }} on ${{ matrix.os }}
run: |
asdf install ${{ matrix.tool.plugin }} ${{ matrix.version }}
asdf set ${{ matrix.tool.plugin }} ${{ matrix.version }}
which ${{ matrix.tool.plugin }}
${{ matrix.tool.command }}
env:
ASDF_CLANG_TOOLS_MACOS_DEQUARANTINE: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading