Skip to content

Commit

Permalink
Include gcc linker scripts (#355)
Browse files Browse the repository at this point in the history
* Include gcc linker scripts

* Update CI

* Clean after previous build
  • Loading branch information
justsmth authored Feb 26, 2024
1 parent 65c9d11 commit 4f7750e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ jobs:
- name: ${{ matrix.crate }}
working-directory: ./${{ matrix.crate }}
run: cargo ${{ matrix.args }}
- name: Clean
run: cargo clean
- name: Force Linux shared build
working-directory: ./aws-lc-rs
if: ${{ matrix.os == 'ubuntu-latest' }}
# Doc-tests fail to link with dynamic build
# See: https://github.com/rust-lang/cargo/issues/8531
run: AWS_LC_SYS_STATIC=0 AWS_LC_FIPS_SYS_STATIC=0 cargo publish --dry-run

msrv:
name: Minimum Supported Rust Version
Expand Down Expand Up @@ -155,4 +163,4 @@ jobs:

- name: Verify msrv
working-directory: ./aws-lc-rs
run: cargo +1.61.0 check --features bindgen
run: cargo +1.61.0 check --features bindgen
1 change: 1 addition & 0 deletions aws-lc-fips-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ include = [
"/aws-lc/**/*.go",
"/aws-lc/go.mod",
"/aws-lc/go.sum",
"/aws-lc/**/*.lds",
"!/aws-lc/bindings/**",
"!/aws-lc/docs/**",
"!/aws-lc/fuzz/**",
Expand Down
1 change: 1 addition & 0 deletions aws-lc-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ include = [
"/aws-lc/**/CMakeLists.txt",
"/aws-lc/**/*.cmake",
"/aws-lc/**/*.errordata",
"/aws-lc/**/*.lds",
"!/aws-lc/bindings/**",
"!/aws-lc/docs/**",
"!/aws-lc/fuzz/**",
Expand Down

0 comments on commit 4f7750e

Please sign in to comment.