From 31fee5ecbdd62d9dd64074bcaf69441cc1f537e7 Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Thu, 12 Mar 2020 16:07:52 -0500 Subject: [PATCH] More attempts --- .github/workflows/rust.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fcae738..b264fb3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,15 +31,6 @@ jobs: echo ::add-path::$HOME/.cargo/bin if: runner.os == 'macOS' - - name: Set Rustup profile to minimal - run: rustup set profile minimal - - - name: Install musl target on Linux - run: | - rustup target add x86_64-unknown-linux-musl - sudo apt-get install musl-tools musl-dev - if: runner.os == 'Linux' - - name: "Print Rust Version" run: | rustc -Vv @@ -61,9 +52,6 @@ jobs: run: cargo test - name: "Install Rustup Targets" - run: | - rustup target add i686-unknown-linux-gnu - rustup target add thumbv7em-none-eabihf - name: "Install Rustup Components" run: rustup component add rust-src llvm-tools-preview - name: "Install cargo-xbuild" @@ -100,7 +88,7 @@ jobs: - name: "Run Test Framework" run: cargo xtest - working-directory: "testing" + working-directory: "./testing" check_formatting: name: "Check Formatting"