Skip to content

Commit

Permalink
Rename pipeline tests, use macos for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Braun committed Sep 26, 2023
1 parent c96f4a3 commit 659c74e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: checks
name: Quality Checks

on:
push:
Expand All @@ -12,7 +12,7 @@ env:
jobs:
# checks markdown links
link-check:
name: links
name: Links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -25,7 +25,7 @@ jobs:

# ensures proper formatting and clippy lint
lint-check:
name: lint
name: Linting
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: check
name: Coverage Tests

on:
push:
Expand All @@ -13,7 +13,7 @@ jobs:
# code coverage job; moved to own workflow file due to running out of disk space.
# The runner will stop working when the machine runs out of disk space. Free space left: 72 MB
coverage:
name: coverage
name: Tests
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/harness_stress_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
harness:
name: Harness
name: Tests
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: integration tests
name: Integration Tests

on:
push:
Expand All @@ -14,7 +14,7 @@ jobs:
# dkg-substrate integration tests
local_chain:
name: Local Chain Tests
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand All @@ -40,10 +40,10 @@ jobs:
toolchain: stable

- name: Install Protobuf and LLVM
run: sudo apt-get install protobuf-compiler llvm libclang-dev
run: brew install protobuf-compiler llvm

- name: Install cargo make
run: cargo install --force cargo-make
run: cargo install cargo-make

- name: Build Binary
run: cargo make build-test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: run
name: Unit Tests

on:
push:
Expand All @@ -12,7 +12,7 @@ env:
jobs:
# dkg-substrate base unit tests
tests:
name: tests
name: Tests
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
Expand Down

0 comments on commit 659c74e

Please sign in to comment.