DLPX-88183 Generate BTF data for ZFS kernel module during git-zfs-make #1606
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
check-ansible: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo ./.github/scripts/install-gradle.sh | |
- run: sudo -E ./.github/scripts/install-ansible-lint.sh | |
- run: /opt/gradle-5.1/bin/gradle ansibleCheck | |
check-shellcheck: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo ./.github/scripts/install-gradle.sh | |
- run: sudo ./.github/scripts/install-shellcheck.sh | |
- run: /opt/gradle-5.1/bin/gradle shellCheck | |
check-shfmt: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo ./.github/scripts/install-gradle.sh | |
- run: sudo ./.github/scripts/install-shfmt.sh | |
- run: /opt/gradle-5.1/bin/gradle shfmtCheck |