summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-05-15 18:30:30 -0700
committerGitHub <noreply@github.com>2021-05-15 21:30:30 -0400
commit39c5ee991e8a02a72da398433c62f4a1b8c7acbb (patch)
tree256e0179eaaaf3eb7542721a71cd762a028ecf00
parent3f7f9d2ccc77912d506f5f9df8334f42851d553f (diff)
github: more CI tweaks (#483)
Tweak PR CI a bit more. Remove complete step, change check name, add comments.
-rw-r--r--.github/workflows/ci.yml13
1 files changed, 1 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0b0d3d33..d3ee2fba 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -60,7 +60,6 @@ jobs:
# Compile/check/test.
check:
- name: ${{ matrix.toolchain }} / ${{ matrix.triple.target }}
needs: [rustfmt, clippy]
runs-on: ${{ matrix.triple.os }}
continue-on-error: true
@@ -101,7 +100,7 @@ jobs:
rust: stable,
toTest: "true",
}
- # Disabled, unfortunately.
+ # Big Sur builds are disabled, unfortunately.
# - {
# os: "macOS-11.0",
# target: "x86_64-apple-darwin",
@@ -194,13 +193,3 @@ jobs:
env:
CARGO_HUSKY_DONT_INSTALL_HOOKS: true
RUST_BACKTRACE: full
-
- complete:
- needs: [check]
- name: CI Pipeline Complete
- runs-on: ubuntu-latest
- steps:
- - name: Echo completion
- shell: bash
- run: |
- echo "Complete!"