Initialize crypto in crypt_format_luks2_opal #392
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
name: Build test | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'wip-luks2' | |
- 'v2.*.x' | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository == 'mbroz/cryptsetup' | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- { COMPILER: "gcc", COMPILER_VERSION: "13", RUN_SSH_PLUGIN_TEST: "1" } | |
env: ${{ matrix.env }} | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v1 | |
- name: Ubuntu setup | |
run: sudo -E .github/workflows/cibuild-setup-ubuntu.sh | |
- name: Configure & Make | |
run: .github/workflows/cibuild.sh CONFIGURE MAKE | |
- name: Check | |
run: sudo -E .github/workflows/cibuild.sh CHECK |