Skip to content

Commit

Permalink
CI: pin rustc version using matrix (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook authored Jul 22, 2020
1 parent c6ef4d6 commit f5c08eb
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/integration.dnode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
- ubuntu-latest
go:
- "1.14.1"
rust:
- "1.44.0"
# - "stable"
# - "nightly

env:
RUSTFLAGS: -D warnings
Expand Down Expand Up @@ -72,7 +76,7 @@ jobs:
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/integration.sentry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
os:
- macos-latest
- ubuntu-latest
rust:
- "1.44.0"
# - "stable"
# - "nightly

env:
RUSTFLAGS: -D warnings
Expand All @@ -35,7 +39,7 @@ jobs:
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/integration.term.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
os:
- macos-latest
- ubuntu-latest
rust:
- "1.44.0"
# - "stable"
# - "nightly

env:
RUSTFLAGS: -D warnings
Expand All @@ -34,7 +38,7 @@ jobs:
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
os:
- macos-latest
- ubuntu-latest
rust:
- "1.44.0"
# - "stable"
# - "nightly

env:
RUSTFLAGS: -D warnings
Expand All @@ -30,7 +34,7 @@ jobs:
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt, clippy
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
os:
- macos-latest
- ubuntu-latest
rust:
- "1.44.0"
# - "stable"
# - "nightly"

env:
RUSTFLAGS: -D warnings
Expand All @@ -36,7 +40,7 @@ jobs:
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: "1.44.0"
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt, clippy
Expand Down

0 comments on commit f5c08eb

Please sign in to comment.