Skip to content

Commit

Permalink
Empty matrix does not work comment the all thing
Browse files Browse the repository at this point in the history
  • Loading branch information
macpie committed May 14, 2024
1 parent 3eed7a2 commit 8a91643
Showing 1 changed file with 47 additions and 48 deletions.
95 changes: 47 additions & 48 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,51 +108,50 @@ jobs:
- name: Clippy
run: cargo clippy --all-targets -- -Dclippy::all -D warnings

tests:
needs: build
runs-on: oracles-20.04
strategy:
fail-fast: false
matrix:
# package: [boost-manager,file-store,ingest,iot-config,iot-packet-verifier,iot-verifier,mobile-config,mobile-packet-verifier,mobile-verifier,reward-scheduler,task-manager]
package: []
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-tests-${{ matrix.package }}
cancel-in-progress: true
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Rust install
uses: dtolnay/rust-toolchain@stable

- name: Install protoc
run: sudo apt-get install -y protobuf-compiler

- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Run unit and integration tests
env:
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres"
run: cargo test -p ${{ matrix.package }} -- --include-ignored
# tests:
# needs: build
# runs-on: oracles-20.04
# strategy:
# fail-fast: false
# matrix:
# package: [boost-manager,file-store,ingest,iot-config,iot-packet-verifier,iot-verifier,mobile-config,mobile-packet-verifier,mobile-verifier,reward-scheduler,task-manager]
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}-tests-${{ matrix.package }}
# cancel-in-progress: true
# services:
# postgres:
# image: postgres
# env:
# POSTGRES_PASSWORD: postgres
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# ports:
# - 5432:5432
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Rust install
# uses: dtolnay/rust-toolchain@stable

# - name: Install protoc
# run: sudo apt-get install -y protobuf-compiler

# - name: Cache
# uses: actions/cache@v4
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

# - name: Run unit and integration tests
# env:
# DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres"
# run: cargo test -p ${{ matrix.package }} -- --include-ignored

0 comments on commit 8a91643

Please sign in to comment.