]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Github workflow: checkstyle
authorGeorge Melikov <mail@gmelikov.ru>
Wed, 12 Aug 2020 17:46:26 +0000 (20:46 +0300)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 13 Aug 2020 21:59:24 +0000 (14:59 -0700)
Use github workflow to run checkstyle
- use free (for OS projects) resources
- starts for every commit and branch
- work on forks, contributors may use it
  before creating PRs

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: George Melikov <mail@gmelikov.ru>
Closes #10705

.github/workflows/checkstyle.yaml [new file with mode: 0644]

diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml
new file mode 100644 (file)
index 0000000..b31afe5
--- /dev/null
@@ -0,0 +1,27 @@
+name: checkstyle
+
+on:
+  push:
+  pull_request_target:
+
+jobs:
+  deploy:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+      with:
+        ref: ${{ github.event.pull_request.head.sha }}
+    - name: Install dependencies
+      run: |
+        sudo apt-get install --yes -qq build-essential autoconf libtool gawk alien fakeroot linux-headers-$(uname -r)
+        sudo apt-get install --yes -qq zlib1g-dev uuid-dev libattr1-dev libblkid-dev libselinux-dev libudev-dev libssl-dev python-dev python-setuptools python-cffi python3 python3-dev python3-setuptools python3-cffi
+        # packages for tests
+        sudo apt-get install --yes -qq parted lsscsi ksh attr acl nfs-kernel-server fio
+        sudo apt-get install --yes -qq mandoc flake8 # devscripts - enable then bashisms fixed
+    - name: Prepare
+      run: |
+        sh ./autogen.sh
+        ./configure
+    - name: Checkstyle
+      run: |
+        make checkstyle