From 0f5229ae2e3b146703a3f01518a8cab67d91d7f7 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Wed, 26 Feb 2020 21:09:05 -0800 Subject: [PATCH] Run only the tests --- .github/workflows/rust.yml | 58 +------------------------------------- 1 file changed, 1 insertion(+), 57 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 90b0a8f..ae436cf 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-16.04, windows-latest, macOS-latest] + os: [ubuntu-16.04] steps: - uses: actions/checkout@v1 @@ -30,59 +30,3 @@ jobs: with: command: test args: --verbose --release --all - - name: Upload ubuntu/macos - uses: actions/upload-artifact@v1 - if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu') - with: - name: ${{ matrix.os }}-zecwallet-cli - path: target/release/zecwallet-cli - - name: Upload windows - uses: actions/upload-artifact@v1 - if: contains(matrix.os, 'windows') - with: - name: ${{ matrix.os }}-zecwallet-cli.exe - path: target/release/zecwallet-cli.exe - - - linux_arm7: - name: Linux ARMv7 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: armv7-unknown-linux-gnueabihf - override: true - - uses: actions-rs/cargo@v1 - with: - use-cross: true - command: build - args: --release --target armv7-unknown-linux-gnueabihf - - name: Upload - uses: actions/upload-artifact@v1 - with: - name: linux_armv7-zecwallet-cli - path: target/armv7-unknown-linux-gnueabihf/release/zecwallet-cli - - linux_aarch64: - name: Linux ARM64 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: aarch64-unknown-linux-gnu - override: true - - uses: actions-rs/cargo@v1 - with: - use-cross: true - command: build - args: --release --target aarch64-unknown-linux-gnu - - name: Upload - uses: actions/upload-artifact@v1 - with: - name: linux_aarch64-zecwallet-cli - path: target/aarch64-unknown-linux-gnu/release/zecwallet-cli -