Disable optimisation profiles in GHA for 1.36.0

This commit is contained in:
Henrik Tjäder 2020-06-10 15:01:07 +00:00
parent 29f354020e
commit a8a003fb89

View file

@ -59,6 +59,10 @@ jobs:
target: ${{ matrix.target }} target: ${{ matrix.target }}
override: true override: true
- name: Disable optimisation profiles
if: matrix.toolchain == '1.36.0'
run: sed -i '/^\[profile.*build-override]$/,/^$/{/^#/!{/^$/!d}}' Cargo.toml
- name: cargo check - name: cargo check
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
@ -268,6 +272,11 @@ jobs:
toolchain: ${{ matrix.toolchain }} toolchain: ${{ matrix.toolchain }}
target: ${{ matrix.target }} target: ${{ matrix.target }}
override: true override: true
- name: Disable optimisation profiles
if: matrix.toolchain == '1.36.0'
run: sed -i '/^\[profile.*build-override]$/,/^$/{/^#/!{/^$/!d}}' Cargo.toml
- name: cargo check - name: cargo check
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
@ -287,6 +296,10 @@ jobs:
toolchain: 1.36.0 toolchain: 1.36.0
target: thumbv7m-none-eabi target: thumbv7m-none-eabi
override: true override: true
- name: Disable optimisation profiles
run: sed -i '/^\[profile.*build-override]$/,/^$/{/^#/!{/^$/!d}}' Cargo.toml
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
use-cross: false use-cross: false
@ -305,6 +318,10 @@ jobs:
toolchain: 1.36.0 toolchain: 1.36.0
target: thumbv6m-none-eabi target: thumbv6m-none-eabi
override: true override: true
- name: Disable optimisation profiles
run: sed -i '/^\[profile.*build-override]$/,/^$/{/^#/!{/^$/!d}}' Cargo.toml
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
use-cross: false use-cross: false