Skip to content
This repository was archived by the owner on Nov 12, 2022. It is now read-only.

Commit 0d03361

Browse files
authored
Auto merge of #532 - servo:jdm-patch-23, r=jdm
Add job to signal all jobs complete.
2 parents 3687d85 + 2df046f commit 0d03361

File tree

3 files changed

+12
-113
lines changed

3 files changed

+12
-113
lines changed

.github/workflows/rust.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,15 @@ jobs:
7070
CARGO_HOME: ${{ github.workspace }}\..\.cargo
7171
run: |
7272
cargo test --verbose --verbose ${{ matrix.features }} --lib
73+
74+
build_result:
75+
name: homu build finished
76+
runs-on: ubuntu-latest
77+
needs: ["Build"]
78+
steps:
79+
- name: Mark the job as successful
80+
run: exit 0
81+
if: success()
82+
- name: Mark the job as unsuccessful
83+
run: exit 1
84+
if: "!success()"

.travis.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

appveyor.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)