]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: Clean up formatting in GitHub Action definitions
authorTim Duesterhus <tim@bastelstu.be>
Sat, 16 Oct 2021 16:10:27 +0000 (18:10 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 18 Oct 2021 05:17:04 +0000 (07:17 +0200)
This patch cleans up the formatting within the .yml definition files for GitHub
Actions to ensure a consistent look across all actions.

.github/workflows/codespell.yml
.github/workflows/compliance.yml
.github/workflows/contrib.yml
.github/workflows/musl.yml
.github/workflows/openssl-nodeprecated.yml

index 61edaeb9ed6bc4536f3fc17f2feeab5ea8cdf2de..955560a0a9c1898ac3788d78f8cb8b8cca04992a 100644 (file)
@@ -1,4 +1,4 @@
-name: codespell
+name: Spelling Check
 
 on:
   schedule:
@@ -9,12 +9,15 @@ permissions:
 
 jobs:
   codespell:
-
     runs-on: ubuntu-latest
-
     steps:
     - uses: actions/checkout@v2
-    - name: install prerequisites
+    - name: Install codespell
       run: sudo pip install codespell
-    - name: check
-      run: codespell -c -q 2 --ignore-words-list ist,ists,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen --skip="CHANGELOG,Makefile,*.fig,*.pem"
+    - name: Run codespell
+      run: |
+        codespell \
+          -c \
+          -q 2 \
+          --ignore-words-list ist,ists,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen \
+          --skip="CHANGELOG,Makefile,*.fig,*.pem"
index fe6c2711e51ffbb8a03d76ef13a5e2b600c63cdb..3ce71780599ce75a8437a9c850f4fdf39788aa66 100644 (file)
@@ -3,7 +3,7 @@ name: Spec Compliance
 
 on:
   schedule:
-    - cron: "0 0 * * 3"
+  - cron: "0 0 * * 3"
 
 permissions:
   contents: read
index 93387a458c4cbf724c360edd23d57f3d4d1b4e12..480f61be8319fc4c225265334d01de529a8cb983 100644 (file)
@@ -8,9 +8,7 @@ permissions:
 
 jobs:
   build:
-
     runs-on: ubuntu-latest
-
     steps:
     - uses: actions/checkout@v2
     - name: Compile admin/halog/halog
index 19d82af7cf199245c847acffe08bd244a4f0d5fd..c106b1d05096e5e9ef1f0d1c9f150d5fa52d7fc3 100644 (file)
@@ -1,6 +1,7 @@
 name: alpine/musl
 
-on: [push]
+on:
+  push:
 
 permissions:
   contents: read
@@ -12,30 +13,30 @@ jobs:
       container:
         image: alpine:latest
       steps:
-        - uses: actions/checkout@master
-        - name: Install dependencies
-          run: apk add gcc make tar git python3 libc-dev linux-headers pcre-dev pcre2-dev openssl-dev lua5.3-dev grep socat curl
-        - name: Install VTest
-          run: scripts/build-vtest.sh
-        - name: Build
-          run: make -j$(nproc) CC=cc V=1 TARGET=linux-musl USE_LUA=1 LUA_INC=/usr/include/lua5.3 LUA_LIB=/usr/lib/lua5.3 USE_OPENSSL=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_PROMEX=1
-        - name: Show version
-          run: ./haproxy -vv
-        - name: Show linked libraries
-          run: ldd haproxy
-        - name: Install problem matcher for VTest
-          # This allows one to more easily see which tests fail.
-          run: echo "::add-matcher::.github/vtest.json"
-        - name: Run VTest
-          id: vtest
-          run: make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel
-        - name: Show results
-          if: ${{ failure() }}
-          run: |
-            for folder in /tmp/haregtests-*/vtc.*; do
-              printf "::group::"
-              cat $folder/INFO
-              cat $folder/LOG
-              echo "::endgroup::"
-            done
-            shopt -s nullglob
+      - uses: actions/checkout@master
+      - name: Install dependencies
+        run: apk add gcc make tar git python3 libc-dev linux-headers pcre-dev pcre2-dev openssl-dev lua5.3-dev grep socat curl
+      - name: Install VTest
+        run: scripts/build-vtest.sh
+      - name: Build
+        run: make -j$(nproc) CC=cc V=1 TARGET=linux-musl USE_LUA=1 LUA_INC=/usr/include/lua5.3 LUA_LIB=/usr/lib/lua5.3 USE_OPENSSL=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_PROMEX=1
+      - name: Show version
+        run: ./haproxy -vv
+      - name: Show linked libraries
+        run: ldd haproxy
+      - name: Install problem matcher for VTest
+        # This allows one to more easily see which tests fail.
+        run: echo "::add-matcher::.github/vtest.json"
+      - name: Run VTest
+        id: vtest
+        run: make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel
+      - name: Show results
+        if: ${{ failure() }}
+        run: |
+          for folder in /tmp/haregtests-*/vtc.*; do
+            printf "::group::"
+            cat $folder/INFO
+            cat $folder/LOG
+            echo "::endgroup::"
+          done
+          shopt -s nullglob
index f6da38234e5a4816821e6340cd87f298e502ca8d..e62dbf0d88d43cfcb7effec3e6cb38a2fdc085a4 100644 (file)
@@ -12,24 +12,22 @@ name: openssl no-deprecated
 
 on:
   schedule:
-    - cron: "0 0 * * 4"
+  - cron: "0 0 * * 4"
 
 permissions:
   contents: read
 
 jobs:
   test:
-
     runs-on: ubuntu-latest
-
     steps:
     - uses: actions/checkout@v1
-    - name: prepare VTest
+    - name: Install VTest
       run: |
         scripts/build-vtest.sh
-    - name: build haproxy
+    - name: Compile HAProxy
       run: |
         make DEFINE="-DOPENSSL_API_COMPAT=0x10100000L -DOPENSSL_NO_DEPRECATED" -j3 CC=gcc ERR=1 TARGET=linux-glibc USE_OPENSSL=1
-    - name: run reg-tests
+    - name: Run VTest
       run: |
         make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel