Skip to content

Commit 03e39d6

Browse files
authored
Merge pull request #381 from fontivan/sskeard/konflux-backport-4-20
Update project to use new shared script library
2 parents d96a225 + 23064f4 commit 03e39d6

19 files changed

+1621
-19930
lines changed

.github/workflows/rust.yml

Lines changed: 14 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,18 @@
1-
name: Rust
2-
3-
on:
4-
push:
5-
branches: [ "main" ]
6-
pull_request:
7-
branches: [ "main" ]
8-
9-
env:
10-
CARGO_TERM_COLOR: always
11-
1+
---
122
jobs:
133
build:
14-
154
runs-on: ubuntu-latest
16-
175
steps:
18-
- uses: actions/checkout@v3
19-
- name: apt update
20-
run: sudo apt update
21-
- name: apt install
22-
run: sudo apt install -y protobuf-compiler
23-
- name: Formatting
24-
run: cargo fmt --check
25-
- name: Check
26-
run: cargo check
27-
- name: Clippy
28-
run: cargo clippy
29-
- name: Test
30-
run: cargo test
6+
- uses: actions/checkout@v4
7+
with:
8+
submodules: recursive
9+
- name: Run rust-ci job
10+
run: make rust-ci
11+
name: Rust
12+
on: # yamllint disable-line rule:truthy
13+
pull_request:
14+
branches:
15+
- main
16+
push:
17+
branches:
18+
- main

.github/workflows/yamllint.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
jobs:
3+
build:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- uses: actions/checkout@v4
7+
with:
8+
submodules: recursive
9+
- name: Run yamllint
10+
run: make yamllint
11+
name: Yamllint
12+
on: # yamllint disable-line rule:truthy
13+
pull_request:
14+
branches:
15+
- main
16+
push:
17+
branches:
18+
- main

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/backup/
33
/summary.yaml
44
/summary_redacted.yaml
5-
5+
bin/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "etcddump"]
55
path = etcddump
66
url = https://github.com/omertuc/etcddump
7+
[submodule "telco5g-konflux"]
8+
path = telco5g-konflux
9+
url = https://github.com/openshift-kni/telco5g-konflux.git

0 commit comments

Comments
 (0)