Skip to content

Commit

Permalink
migrate ci to github action (#411)
Browse files Browse the repository at this point in the history
* migrate ci to github action

Signed-off-by: Woojoong Kim <[email protected]>

* migrate ci to github action

Signed-off-by: Woojoong Kim <[email protected]>

* migrate ci to github action

Signed-off-by: Woojoong Kim <[email protected]>

---------

Signed-off-by: Woojoong Kim <[email protected]>
  • Loading branch information
woojoong88 authored Jul 2, 2024
1 parent d4dae51 commit f9bd6e3
Show file tree
Hide file tree
Showing 20 changed files with 361 additions and 614 deletions.
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation

name: protoc_gen_choice
name: Build and test workflow
on:
pull_request:
branches:
- master
push:
branches:
- master
pull_request:

jobs:
protoc_gen_choice:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: build
run: make build
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./protoc-gen-choice
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v -o ./protoc-gen-choice

- name: Unit tests
run: go test -race ./...

run: make test
45 changes: 45 additions & 0 deletions .github/workflows/code-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation

name: Code scan workflow

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
version-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: check version
run: make check-version
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golang-lint
run: make lint
license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check license
run: make license
fossa-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: FOSSA scan
uses: fossa-contrib/fossa-action@v3
with:
fossa-api-key: 6d304c09a3ec097ba4517724e4a4d17d
39 changes: 0 additions & 39 deletions .github/workflows/e2sm_kpm.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/e2sm_kpm_v2.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/e2sm_kpm_v2_go.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/e2sm_mho.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/e2sm_mho_go.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/e2sm_ni.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/e2sm_rc.yml

This file was deleted.

Loading

0 comments on commit f9bd6e3

Please sign in to comment.