Skip to content

Commit

Permalink
[workflow] go-ucfg (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
apmmachine authored Aug 7, 2023
1 parent 3595853 commit 9e7ec4b
Show file tree
Hide file tree
Showing 10 changed files with 101 additions and 161 deletions.
89 changes: 0 additions & 89 deletions .ci/Jenkinsfile

This file was deleted.

2 changes: 2 additions & 0 deletions .ci/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ echo "Check format"
checkformat go fmt ./...

echo "Check for license headers"
go install github.com/elastic/go-licenser@latest
checkformat go-licenser -license ASL2

echo "Check notice file"
go install go.elastic.co/go-licence-detector@latest
checkformat dev-tools/generate_notice
18 changes: 0 additions & 18 deletions .ci/jobs/defaults.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .ci/jobs/folders.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .ci/jobs/go-ucfg-mbp.yml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
name: ci

on:
workflow_dispatch:
push:
branches:
- main
pull_request: ~

permissions:
contents: read

## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v4
with:
go-version: '1.17'

- name: Check
run: .ci/check.sh

test:
strategy:
fail-fast: false
matrix:
go-version: ['1.17', '1.18']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: '**/go.sum'

- name: Test
run: .ci/test.sh
env:
GO_VERSION: ${{ matrix.go-version }}

- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: build/junit*.xml
19 changes: 19 additions & 0 deletions .github/workflows/opentelemetry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: OpenTelemetry Export Trace

on:
workflow_run:
workflows:
- ci
- test-reporter
types: [completed]

jobs:
otel-export-trace:
runs-on: ubuntu-latest
steps:
- uses: elastic/apm-pipeline-library/.github/actions/opentelemetry@current
with:
vaultUrl: ${{ secrets.VAULT_ADDR }}
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }}
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }}
20 changes: 20 additions & 0 deletions .github/workflows/test-reporter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
## Workflow to process the JUnit test results and add a report to the checks.
name: test-reporter
on:
workflow_run:
workflows:
- test
types:
- completed

jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: elastic/apm-pipeline-library/.github/actions/test-report@current
with:
artifact: test-results # artifact name
name: JUnit Tests # Name of the check run which will be created
path: "**/*.xml" # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2016-2022 Elasticsearch BV
Copyright 2016-2023 Elasticsearch BV

This product includes software developed by The Apache Software
Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://beats-ci.elastic.co/job/Library/job/go-ucfg-mbp/job/main/badge/icon)](https://beats-ci.elastic.co/job/Library/job/go-ucfg-mbp/job/main/)
[![ci](https://github.com/elastic/go-ucfg/actions/workflows/ci.yml/badge.svg)](https://github.com/elastic/go-ucfg/actions/workflows/ci.yml)
[![Go Report
Card](https://goreportcard.com/badge/github.com/elastic/go-ucfg)](https://goreportcard.com/report/github.com/elastic/go-ucfg)
[![codecov](https://codecov.io/gh/elastic/go-ucfg/branch/main/graph/badge.svg)](https://codecov.io/gh/elastic/go-ucfg)
Expand Down

0 comments on commit 9e7ec4b

Please sign in to comment.