Skip to content

Commit

Permalink
gh-actions: some yaml and gcc flag syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
deeenes committed Jul 2, 2024
1 parent d5085fa commit 80a024e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install graphviz
echo "PATH=\"$(brew --prefix graphviz):$PATH\"" >> $GITHUB_ENV
echo "CFLAGS=\"-I $(brew --prefix graphviz)/include\"" >> $GITHUB_ENV
echo "LDFLAGS=\"-L $(brew --prefix graphviz)/lib\"" >> $GITHUB_ENV
echo "PATH=\"$(brew --prefix graphviz)/bin:$PATH\"" >> "$GITHUB_ENV"
echo "CFLAGS=\"-I$(brew --prefix graphviz)/include\"" >> "$GITHUB_ENV"
echo "LDFLAGS=\"-L$(brew --prefix graphviz)/lib\"" >> "$GITHUB_ENV"
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
Expand All @@ -60,11 +60,11 @@ jobs:
key: venv-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run:
echo "Env variables:"
echo "$PATH"
echo "$CFLAGS"
echo "$LDFLAGS"
run: |
echo "Env variables:\n\r"
echo -e "$PATH\n\r"
echo -e "$CFLAGS\n\r"
echo -e "$LDFLAGS\n\r"
poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
Expand Down

0 comments on commit 80a024e

Please sign in to comment.