Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cn-kali-team committed Apr 19, 2022
1 parent 2ffcfae commit 241cc1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
rust: [ "nightly" ]
continue-on-error: ${{ matrix.rust != 'nightly' }}
rust: [ "stable" ]
continue-on-error: ${{ matrix.rust != 'stable' }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
Expand All @@ -55,8 +55,8 @@ jobs:
uses: actions-rs/toolchain@v1
with:
# Not MSRV because its harder to jump between versions and people are
# more likely to have nightly
toolchain: nightly
# more likely to have stable
toolchain: stable
profile: minimal
override: true
components: rustfmt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,22 +63,22 @@ jobs:
include:
- build: linux
os: ubuntu-latest
rust: nightly
rust: stable
target: x86_64-unknown-linux-musl
file: observer_ward_amd64
- build: macos
os: macos-latest
rust: nightly
rust: stable
target: x86_64-apple-darwin
file: observer_ward_darwin
- build: macos_m1
os: macos-latest
rust: nightly
rust: stable
target: aarch64-apple-darwin
file: observer_ward_aarch64_darwin
- build: win-msvc
os: windows-latest
rust: nightly
rust: stable
target: i686-pc-windows-msvc
file: observer_ward.exe
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 241cc1c

Please sign in to comment.