2022-03-22 11:03:15 -04:00
|
|
|
name: Unit Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-18 10:17:41 -04:00
|
|
|
- "release/**"
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2023-01-24 05:39:26 -05:00
|
|
|
- "**/testdata/**"
|
2023-02-14 14:01:00 -05:00
|
|
|
- ".github/workflows/test-unittest.yml"
|
2022-03-22 11:03:15 -04:00
|
|
|
pull_request:
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
2023-01-31 05:21:32 -05:00
|
|
|
- "cli/internal/helm/**"
|
2022-09-03 11:47:47 -04:00
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2023-01-24 05:39:26 -05:00
|
|
|
- "**/testdata/**"
|
2023-02-14 14:01:00 -05:00
|
|
|
- ".github/workflows/test-unittest.yml"
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
jobs:
|
2023-05-19 10:18:59 -04:00
|
|
|
test-unittest:
|
2023-05-19 10:56:22 -04:00
|
|
|
runs-on: [self-hosted, bazel-cached]
|
2023-08-23 12:52:46 -04:00
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
2022-03-22 11:03:15 -04:00
|
|
|
steps:
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Checkout
|
2023-07-03 02:19:10 -04:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-12-19 09:21:28 -05:00
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
2023-08-23 12:52:46 -04:00
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install AWS cli
|
|
|
|
run: |
|
|
|
|
curl -fsSL "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
|
|
|
|
unzip awscliv2.zip
|
|
|
|
sudo ./aws/install
|
|
|
|
rm -rf awscliv2.zip aws
|
|
|
|
|
|
|
|
- name: Login to AWS (IAM role)
|
|
|
|
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0
|
|
|
|
with:
|
|
|
|
role-to-assume: arn:aws:iam::795746500882:role/GithubActionGocoverage
|
|
|
|
aws-region: eu-central-1
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2023-05-19 10:56:22 -04:00
|
|
|
- name: Setup bazel
|
|
|
|
uses: ./.github/actions/setup_bazel
|
2022-03-22 11:03:15 -04:00
|
|
|
with:
|
2023-05-19 10:56:22 -04:00
|
|
|
useCache: "true"
|
|
|
|
buildBuddyApiKey: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
|
2022-05-31 12:33:27 -04:00
|
|
|
|
2022-06-30 07:26:21 -04:00
|
|
|
- name: Unit Tests
|
2022-10-31 14:25:02 -04:00
|
|
|
env:
|
|
|
|
TMPDIR: ${{ runner.temp }}
|
2023-05-19 10:56:22 -04:00
|
|
|
run: bazel test //... --test_output=errors --config=nostamp
|
2023-08-23 12:52:46 -04:00
|
|
|
|
|
|
|
- name: Coverage
|
|
|
|
id: coverage
|
|
|
|
run: |
|
|
|
|
bazel run //bazel/ci:gocoverage_diff
|
|
|
|
lines=$(wc -l < coverage_diff.md)
|
|
|
|
uploadable=$([[ ${lines} -gt 3 ]] && echo "true" || echo "false")
|
|
|
|
echo "uploadable=$uploadable" | tee -a "$GITHUB_OUTPUT"
|
|
|
|
|
|
|
|
- name: Comment coverage
|
|
|
|
if: steps.coverage.outputs.uploadable == 'true' && github.event_name == 'pull_request'
|
|
|
|
uses: marocchino/sticky-pull-request-comment@efaaab3fd41a9c3de579aba759d2552635e590fd # v2.8.0
|
|
|
|
with:
|
|
|
|
header: coverage
|
|
|
|
path: coverage_diff.md
|
2023-09-26 04:18:41 -04:00
|
|
|
recreate: true
|
2023-08-23 12:52:46 -04:00
|
|
|
|
|
|
|
- name: Upload coverage
|
|
|
|
if: github.ref_name == 'main'
|
|
|
|
run: |
|
|
|
|
cat coverage_result.json
|
|
|
|
aws s3 cp coverage_result.json s3://constellation-ci/gocoverage/coverage_main.json
|
|
|
|
echo "coverage uploaded to s3://constellation-ci/gocoverage/coverage_main.json"
|