Skip to content

Commit

Permalink
fix yaml indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
icing committed Jan 13, 2025
1 parent 2935556 commit 37d8b52
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ jobs:
install_steps: pytest

steps:
- name: 'install prereqs'
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-suggests --no-install-recommends \
libtool autoconf automake pkgconf apache2 apache2-dev openssl \
libssl-dev libjansson-dev libcurl4-openssl-dev \
${{ matrix.build.install_packages }}
python3 -m venv $HOME/venv
- name: 'install prereqs'
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-suggests --no-install-recommends \
libtool autoconf automake pkgconf apache2 apache2-dev openssl \
libssl-dev libjansson-dev libcurl4-openssl-dev \
${{ matrix.build.install_packages }}
python3 -m venv $HOME/venv
- name: 'configure'
run: |
autoreconf -fi
./configure --enable-werror
- name: 'configure'
run: |
autoreconf -fi
./configure --enable-werror
- name: 'build'
run: |
make V=1
- name: 'build'
run: |
make V=1

0 comments on commit 37d8b52

Please sign in to comment.