-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bindings generation for aws-lc-fips-sys v0.12.6
- Loading branch information
Showing
17 changed files
with
321 additions
and
129,457 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
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]" | ||
|
||
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-12, macos-13-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_INTERNAL_NO_PREFIX: "1" | ||
run: | | ||
cargo test -p aws-lc-fips-sys --features bindgen,ssl | ||
- 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_INTERNAL_NO_PREFIX: "1" | ||
run: | | ||
cross test -p aws-lc-fips-sys --features bindgen,ssl --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@nightly | ||
- 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: | ||
max-parallel: 1 | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-12, macos-13-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_RUST_INTERNAL_BINDGEN: "1" | ||
run: | | ||
cargo test -p aws-lc-fips-sys --features bindgen,ssl | ||
- 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_RUST_INTERNAL_BINDGEN: "1" | ||
run: | | ||
cross test -p aws-lc-fips-sys --features bindgen,ssl --target ${{ matrix.target }} | ||
- name: Commit & Push changes | ||
run: ./scripts/ci/ci_add_commit_rebase_push.sh "Generated bindings for ${{ matrix.target }}" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
[build] | ||
dockerfile = "./docker/linux-cross/Dockerfile" | ||
|
||
[build.env] | ||
passthrough = [ | ||
"AWS_LC_SYS_INTERNAL_NO_PREFIX", "AWS_LC_RUST_INTERNAL_BINDGEN" | ||
"AWS_LC_SYS_INTERNAL_NO_PREFIX", "AWS_LC_RUST_INTERNAL_BINDGEN", "AWS_LC_FIPS_SYS_INTERNAL_NO_PREFIX", "GOPROXY" | ||
] |
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
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
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
Oops, something went wrong.