Skip to content

Uninstall pkg-config #167

Uninstall pkg-config

Uninstall pkg-config #167

Workflow file for this run

name: Build workflow-testing
on:
push:
branches:
- "**"
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
install-eccodes:
strategy:
matrix:
os: ["macos-latest"]
fail-fast: false
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- name: install pkgconf
run: |
if [[ $(brew list) == *"pkg-config"* ]]; then
brew uninstall $(brew list | grep pkg-config)
fi
brew install eccodes