Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

fix: Improve retry mechanism and error logging #69

Merged
merged 6 commits into from
May 23, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
No need to build gnu
  • Loading branch information
amaury1093 committed May 23, 2020
commit 7dad47b650b1552949ca9d132276782047a24ad2
29 changes: 1 addition & 28 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,35 +77,8 @@ jobs:
command: clippy
args: -- -D warnings

# Build a binary with target `x86_64-unknown-linux-gnu`, put in artifacts
build-gnu:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy

- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target=x86_64-unknown-linux-gnu

- name: Upload binary as artifact
uses: actions/upload-artifact@v1
with:
name: reacher-gnu-${{ github.sha }}
path: ./target/x86_64-unknown-linux-gnu/release/reacher

# Build a binary with target `x86_64-unknown-linux-musl`, put in artifacts
build-musl:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand Down