From fd59df07de66a3e20038f2949ad760b77f9999b4 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Mon, 10 Apr 2023 20:36:31 -0300 Subject: ci: line-wrap and split/join some commands For increased readability. Note: `>` basically turns each newline into a space while `|` keeps newlines as is. Both remove leading indentation. Note2: On jobs using `apt-get install`, this commit moves package names to their own line, to make it easier to compare which packages are being installed across such jobs. --- .github/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to '.github/workflows/build.yml') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 429fb5807..4af788044 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,9 +64,14 @@ jobs: - name: update package information run: sudo apt-get update - name: install dependencies - run: sudo apt-get install gcc-12 libapparmor-dev libselinux1-dev expect xzdec whois bridge-utils + run: > + sudo apt-get install + gcc-12 libapparmor-dev libselinux1-dev expect xzdec whois + bridge-utils - name: configure - run: CC=gcc-12 ./configure --prefix=/usr --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux + run: > + CC=gcc-12 ./configure --prefix=/usr --enable-fatal-warnings + --enable-analyzer --enable-apparmor --enable-selinux - name: make run: make - name: make install -- cgit v1.2.3-70-g09d2