Skip to content

Commit

Permalink
Merging master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Oct 22, 2019
2 parents 34d8d78 + 207a7a6 commit 401f501
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Security audit
on:
schedule:
- cron: '0 7 * * *'
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml → .github/workflows/tier1.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
on: [push, pull_request]

name: Continuous integration
name: Tier 1 CI

jobs:
ci:
tier1_ci:
name: CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:

code_coverage:
runs-on: ${{ matrix.os }}
needs: ci
needs: tier1_ci
strategy:
matrix:
os:
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/tier2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Tier 2 platforms are expected to be compiled.
# There are no guarantees provided for code correctness on these platforms.

on: push

name: Tier 2 CI

jobs:
tier2_ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
target:
# ARM targets were added in order to guarantee that `nushell` crate
# will be able to compile correctly.
# See https://github.com/nushell/nushell/issues/485

# ARM64
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
# ARMv7
- armv7-unknown-linux-gnueabihf
- armv7-unknown-linux-musleabihf
# ARMv6
- arm-unknown-linux-gnueabi
- arm-unknown-linux-gnueabihf
- arm-unknown-linux-musleabi
- arm-unknown-linux-musleabihf
steps:
- uses: actions/checkout@v1
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
use-cross: true
toolchain: stable
override: true

- name: Build
uses: actions-rs/cargo@v1
with:
command: build
2 changes: 1 addition & 1 deletion heim-process/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ darwin-libproc = "0.1.1"
futures-executor-preview = "0.3.0-alpha.19"
version-sync = "0.8"
pin-utils = "0.1.0-alpha.4"
futures-timer = "0.4.0"
futures-timer = "0.5.0"
which = "~3.0"

[features]
Expand Down

0 comments on commit 401f501

Please sign in to comment.