mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
export cflags to try to find augeas.h
This commit is contained in:
parent
6422ce5cca
commit
a1d5b04057
2 changed files with 11 additions and 2 deletions
2
.github/actions/run_tox/action.yml
vendored
2
.github/actions/run_tox/action.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: run_tox
|
||||
name: Run tox
|
||||
|
||||
inputs:
|
||||
AWS_ACCESS_KEY_ID:
|
||||
|
|
|
|||
11
.github/actions/setup_tox/action.yml
vendored
11
.github/actions/setup_tox/action.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: setup_tox
|
||||
name: Setup tox
|
||||
|
||||
inputs:
|
||||
AWS_TEST_FARM_PEM:
|
||||
|
|
@ -12,6 +12,13 @@ inputs:
|
|||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
# We run brew update because we've seen attempts to install an older version
|
||||
# of a package fail. See
|
||||
# https://github.com/actions/virtual-environments/issues/3165.
|
||||
#
|
||||
# We untap homebrew/core and homebrew/cask and unset HOMEBREW_NO_INSTALL_FROM_API (which
|
||||
# is maybe set by the CI macOS env) because GitHub has been having issues, making these jobs
|
||||
# fail on git clones: https://github.com/orgs/Homebrew/discussions/4612.
|
||||
- name: Install MacOS dependencies
|
||||
if: runner.os == 'macOS'
|
||||
run: |-
|
||||
|
|
@ -20,6 +27,8 @@ runs:
|
|||
brew untap homebrew/core homebrew/cask
|
||||
brew update
|
||||
brew install augeas
|
||||
BREW_PREFIX=$(brew --prefix)
|
||||
export CFLAGS="$CFLAGS -I$BREW_PREFIX/include -L$BREW_PREFIX/lib"
|
||||
shell: bash
|
||||
- name: Install Linux dependencies
|
||||
if: runner.os == 'Linux'
|
||||
|
|
|
|||
Loading…
Reference in a new issue