Feedback, and CFB1 and CFB8 for AES #60
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: Auto-generate aws-lc-fips-sys Bindings | |
on: | |
push: | |
branches: | |
- 'generate/aws-lc-fips-sys-*' | |
env: | |
GIT_AUTHOR_NAME: "aws-lc-fips-sys-bindings-generator" | |
GIT_AUTHOR_EMAIL: "[email protected]" | |
GIT_COMMITTER_NAME: "aws-lc-fips-sys-bindings-generator" | |
GIT_COMMITTER_EMAIL: "[email protected]" | |
RUST_BACKTRACE: 1 | |
# We can pin the version if nightly is too unstable. | |
# Otherwise, we test against the latest version. | |
RUST_NIGHTLY_TOOLCHAIN: nightly | |
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly-2024-05-22 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
collect-symbols-and-commit: | |
if: github.repository == 'aws/aws-lc-rs' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ ubuntu-latest, macos-13, macos-14-xlarge ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
ref: ${{ github.ref_name }} | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.18' | |
- name: Install current Bash on macOS | |
if: runner.os == 'macOS' | |
run: brew install bash coreutils | |
- name: No-prefix build for ${{ matrix.os }} | |
env: | |
AWS_LC_FIPS_SYS_NO_PREFIX: "1" | |
run: | | |
cargo test -p aws-lc-fips-sys --features bindgen | |
- name: Collect symbols | |
run: | | |
./scripts/build/collect_symbols.sh -c aws-lc-fips-sys | |
- name: Commit & Push changes | |
run: ./scripts/ci/ci_add_commit_rebase_push.sh "Symbols from ${{ matrix.os }}" | |
collect-cross-symbols-and-commit: | |
if: github.repository == 'aws/aws-lc-rs' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
target: [ aarch64-unknown-linux-gnu, aarch64-unknown-linux-musl, x86_64-unknown-linux-musl ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
ref: ${{ github.ref_name }} | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.18' | |
- name: Install cross | |
run: cargo install cross --locked --git https://github.com/cross-rs/cross | |
- name: No-prefix build for ${{ matrix.target }} | |
env: | |
AWS_LC_FIPS_SYS_NO_PREFIX: "1" | |
run: | | |
cross test -p aws-lc-fips-sys --features bindgen --target ${{ matrix.target }} | |
- name: Collect symbols | |
run: | | |
./scripts/build/collect_symbols.sh -c aws-lc-fips-sys -t ${{ matrix.target }} | |
- name: Commit & Push changes | |
run: ./scripts/ci/ci_add_commit_rebase_push.sh "Symbols for ${{ matrix.target }}" | |
generate-headers-and-commit: | |
needs: [ collect-cross-symbols-and-commit, collect-symbols-and-commit ] | |
if: github.repository == 'aws/aws-lc-rs' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
ref: ${{ github.ref_name }} | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.RUST_SCRIPT_NIGHTLY_TOOLCHAIN }} | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.18' | |
- name: Generate Prefix Headers | |
run: ./scripts/generate/_generate_prefix_headers.sh -f -c aws-lc-fips-sys | |
- name: Update sys-crate metadata | |
run: ./scripts/ci/update_sys_crate_metadata.sh aws-lc-fips-sys | |
- name: Commit & Push changes | |
run: ./scripts/ci/ci_add_commit_rebase_push.sh "Generated headers" | |
generate-bindings-and-commit: | |
needs: generate-headers-and-commit | |
if: github.repository == 'aws/aws-lc-rs' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-13, macos-14-xlarge ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
ref: ${{ github.ref_name }} | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.18' | |
- name: Install current Bash on macOS | |
if: runner.os == 'macOS' | |
run: brew install bash coreutils | |
- name: Generate bindings for ${{ matrix.os }} | |
env: | |
AWS_LC_FIPS_SYS_PREGENERATING_BINDINGS: "1" | |
run: | | |
cargo test -p aws-lc-fips-sys --features bindgen | |
- name: Commit & Push changes | |
run: ./scripts/ci/ci_add_commit_rebase_push.sh "Generated bindings from ${{ matrix.os }}" | |
generate-cross-bindings-and-commit: | |
needs: generate-headers-and-commit | |
if: github.repository == 'aws/aws-lc-rs' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: [ aarch64-unknown-linux-gnu, aarch64-unknown-linux-musl, x86_64-unknown-linux-musl ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
ref: ${{ github.ref_name }} | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install cross | |
run: cargo install cross --locked --git https://github.com/cross-rs/cross | |
- name: Generate bindings for ${{ matrix.target }} | |
env: | |
AWS_LC_FIPS_SYS_PREGENERATING_BINDINGS: "1" | |
run: | | |
cross test -p aws-lc-fips-sys --features bindgen --target ${{ matrix.target }} | |
- name: Commit & Push changes | |
run: ./scripts/ci/ci_add_commit_rebase_push.sh "Generated bindings for ${{ matrix.target }}" |