aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-04-10 20:36:31 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-04-24 23:29:28 -0300
commitfd59df07de66a3e20038f2949ad760b77f9999b4 (patch)
treef54ffb752f2db405c9fab3369ea797fef2330cb8 /.github/workflows/build.yml
parentci: simplify test steps in build.yml (diff)
downloadfirejail-fd59df07de66a3e20038f2949ad760b77f9999b4.tar.gz
firejail-fd59df07de66a3e20038f2949ad760b77f9999b4.tar.zst
firejail-fd59df07de66a3e20038f2949ad760b77f9999b4.zip
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.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml9
1 files changed, 7 insertions, 2 deletions
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:
64 - name: update package information 64 - name: update package information
65 run: sudo apt-get update 65 run: sudo apt-get update
66 - name: install dependencies 66 - name: install dependencies
67 run: sudo apt-get install gcc-12 libapparmor-dev libselinux1-dev expect xzdec whois bridge-utils 67 run: >
68 sudo apt-get install
69 gcc-12 libapparmor-dev libselinux1-dev expect xzdec whois
70 bridge-utils
68 - name: configure 71 - name: configure
69 run: CC=gcc-12 ./configure --prefix=/usr --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux 72 run: >
73 CC=gcc-12 ./configure --prefix=/usr --enable-fatal-warnings
74 --enable-analyzer --enable-apparmor --enable-selinux
70 - name: make 75 - name: make
71 run: make 76 run: make
72 - name: make install 77 - name: make install