Skip to content

Commit 9fae38f

Browse files
committed
Update ci_tests.yml
1 parent 77517c6 commit 9fae38f

File tree

1 file changed

+2
-70
lines changed

1 file changed

+2
-70
lines changed

.github/workflows/ci_tests.yml

Lines changed: 2 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI-Tests
33
on:
44
push:
55
branches: [ "main" ]
6+
paths-ignore: ["README.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md"]
67
pull_request:
8+
paths-ignore: ["README.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md"]
79

810
env:
911
CARGO_TERM_COLOR: always
@@ -12,76 +14,6 @@ env:
1214
CARGO_INCREMENTAL: 0
1315

1416
jobs:
15-
# node_tests:
16-
# runs-on: ubuntu-latest
17-
# strategy:
18-
# matrix:
19-
# shardNumber: [1, 2, 3, 4]
20-
# totalShards: [4]
21-
# env:
22-
# CARGO_FLAGS: --verbose --locked --features systemd gelf
23-
# steps:
24-
# - name: Checkout code
25-
# uses: actions/checkout@v3
26-
# with:
27-
# ref: ${{ github.event.pull_request.head.sha }}
28-
# - uses: Swatinem/rust-cache@v2
29-
# - name: Free disk space
30-
# run: |
31-
# df -h
32-
# sudo rm -rf /usr/share/dotnet
33-
# sudo rm -rf /opt/ghc
34-
# sudo rm -rf "/usr/local/share/boost"
35-
# df -h
36-
# - name: Install Nextest
37-
# run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
38-
# - name: Install deps
39-
# run:
40-
# sudo apt install -y protobuf-compiler libssl-dev libpq-dev libsqlite3-dev pkg-config
41-
#
42-
# - name: Run node tests
43-
# uses: actions-rs/toolchain@v1
44-
# with:
45-
# toolchain: "1.65" # it says it can read the rust-toolchain file, but it fails if we omit this
46-
# components: rustfmt, clippy
47-
# - run: |
48-
# cd src/jormungandr
49-
# cargo build
50-
# cargo nextest run -p jormungandr -p jcli -p jormungandr-integration-tests --partition hash:${{ matrix.shardNumber }}/${{ matrix.totalShards }}
51-
52-
# other_tests:
53-
# runs-on: ubuntu-latest
54-
# env:
55-
# CARGO_FLAGS: --verbose --locked
56-
# steps:
57-
# - name: Checkout code
58-
# uses: actions/checkout@v3
59-
# with:
60-
# ref: ${{ github.event.pull_request.head.sha }}
61-
# - uses: Swatinem/rust-cache@v2
62-
# - name: Install Nextest
63-
# run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
64-
# - name: Install deps
65-
# run:
66-
# sudo apt install -y protobuf-compiler libssl-dev libpq-dev libsqlite3-dev pkg-config
67-
#
68-
# - name: Run other tests
69-
# uses: actions-rs/toolchain@v1
70-
# with:
71-
# toolchain: "1.65" # it says it can read the rust-toolchain file, but it fails if we omit this
72-
# components: rustfmt, clippy
73-
# - run: |
74-
# cargo nextest run --workspace \
75-
# --exclude jormungandr \
76-
# --exclude jcli \
77-
# --exclude jormungandr-integration-tests \
78-
# --exclude vit-servicing-station-lib \
79-
# --exclude vit-servicing-station-cli \
80-
# --exclude vit-servicing-station-tests \
81-
# --exclude vit-servicing-station-server \
82-
# --exclude catalyst-toolbox \
83-
# --exclude "chain-*" \
84-
8517
vit_servicing_station:
8618
name: Vit Servicing Station Tests
8719
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)