-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50: Switch to GH Actions, fix tests, update network libraries r=michaelkirk a=urschrei Fixes #49 Co-authored-by: Stephan Hügel <shugel@tcd.ie>
- Loading branch information
Showing
8 changed files
with
71 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- [ ] I agree to follow the project's [code of conduct](https://github.com/georust/geo/blob/master/CODE_OF_CONDUCT.md). | ||
- [ ] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users. | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
on: push | ||
name: Run tests | ||
jobs: | ||
# The `ci-result` job doesn't actually test anything - it just aggregates the | ||
# overall build status for bors, otherwise our bors.toml would need an entry | ||
# for each individual job produced by the job-matrix. | ||
# | ||
# Ref: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149 | ||
# | ||
# ALL THE SUBSEQUENT JOBS NEED THEIR `name` ADDED TO THE `needs` SECTION OF THIS JOB! | ||
ci-result: | ||
name: ci result | ||
runs-on: ubuntu-latest | ||
needs: | ||
- geocoding | ||
steps: | ||
- name: Mark the job as a success | ||
if: success() | ||
run: exit 0 | ||
- name: Mark the job as a failure | ||
if: "!success()" | ||
run: exit 1 | ||
|
||
geocoding: | ||
name: geocoding | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, '[skip ci]')" | ||
defaults: | ||
run: | ||
working-directory: . | ||
strategy: | ||
matrix: | ||
container_image: ["georust/geo-ci:rust-1.50", "georust/geo-ci:rust-1.51"] | ||
container: | ||
image: ${{ matrix.container_image }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- run: cargo install cargo-all-features | ||
- run: cargo build-all-features | ||
- run: cargo test-all-features |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
status = [ | ||
"ci result", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters