mirror of
https://github.com/status-im/consul.git
synced 2025-02-16 15:47:21 +00:00
108 lines
3.6 KiB
YAML
108 lines
3.6 KiB
YAML
|
name: reusable-unit
|
||
|
|
||
|
on:
|
||
|
workflow_call:
|
||
|
inputs:
|
||
|
directory:
|
||
|
required: true
|
||
|
type: string
|
||
|
runs-on:
|
||
|
description: An expression indicating which kind of runners to use.
|
||
|
required: true
|
||
|
type: string
|
||
|
go-arch:
|
||
|
required: false
|
||
|
type: string
|
||
|
default: ""
|
||
|
uploaded-binary-name:
|
||
|
required: false
|
||
|
type: string
|
||
|
default: "consul-bin"
|
||
|
package-names-command:
|
||
|
required: false
|
||
|
type: string
|
||
|
default: 'go list -tags "$GOTAGS" ./...'
|
||
|
go-test-flags:
|
||
|
required: false
|
||
|
type: string
|
||
|
default: ""
|
||
|
|
||
|
env:
|
||
|
TEST_RESULTS: /tmp/test-results
|
||
|
GOTESTSUM_VERSION: 1.8.2
|
||
|
GOARCH: ${{inputs.go-arch}}
|
||
|
|
||
|
jobs:
|
||
|
go-test:
|
||
|
runs-on: ${{ fromJSON(inputs.runs-on) }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
||
|
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
|
||
|
with:
|
||
|
go-version-file: 'go.mod'
|
||
|
- name: Setup go mod cache
|
||
|
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # pin@v3.2.6
|
||
|
with:
|
||
|
path: |
|
||
|
~/.cache/go-build
|
||
|
~/go/pkg/mod
|
||
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-go-
|
||
|
- name: Install gotestsum
|
||
|
run: |
|
||
|
wget https://github.com/gotestyourself/gotestsum/releases/download/v${{env.GOTESTSUM_VERSION}}/gotestsum_${{env.GOTESTSUM_VERSION}}_linux_amd64.tar.gz
|
||
|
sudo tar -C /usr/local/bin -xzf gotestsum_${{env.GOTESTSUM_VERSION}}_linux_amd64.tar.gz
|
||
|
rm gotestsum_${{env.GOTESTSUM_VERSION}}_linux_amd64.tar.gz
|
||
|
- run: mkdir -p ${{env.TEST_RESULTS}}
|
||
|
- name: go mod download
|
||
|
working-directory: ${{inputs.directory}}
|
||
|
run: go mod download
|
||
|
- name: Download consul
|
||
|
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # pin@v3.0.2
|
||
|
with:
|
||
|
name: ${{inputs.uploaded-binary-name}}
|
||
|
path: /usr/local/bin
|
||
|
- name: Make sure consul is executable
|
||
|
run: sudo chmod +x /usr/local/bin/consul
|
||
|
- name: Display downloaded file
|
||
|
run: ls -ld consul
|
||
|
working-directory: /usr/local/bin
|
||
|
- run: go env
|
||
|
- name: Run tests
|
||
|
working-directory: ${{inputs.directory}}
|
||
|
run: |
|
||
|
PACKAGE_NAMES=$(${{inputs.package-names-command}})
|
||
|
|
||
|
# some tests expect this umask, and arm images have a different default
|
||
|
umask 0022
|
||
|
|
||
|
${{inputs.go-test-flags}}
|
||
|
|
||
|
gotestsum \
|
||
|
--format=short-verbose \
|
||
|
--jsonfile /tmp/jsonfile/go-test.log \
|
||
|
--debug \
|
||
|
--rerun-fails=3 \
|
||
|
--rerun-fails-max-failures=40 \
|
||
|
--rerun-fails-report=/tmp/gotestsum-rerun-fails \
|
||
|
--packages="$PACKAGE_NAMES" \
|
||
|
--junitfile ${{env.TEST_RESULTS}}/gotestsum-report.xml -- \
|
||
|
-tags="${{env.GOTAGS}}" \
|
||
|
${GO_TEST_FLAGS-} \
|
||
|
-cover -coverprofile=coverage.txt
|
||
|
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # pin@v3.1.2
|
||
|
with:
|
||
|
name: test-results
|
||
|
path: ${{env.TEST_RESULTS}}
|
||
|
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # pin@v3.1.2
|
||
|
with:
|
||
|
name: jsonfile
|
||
|
path: /tmp/jsonfile
|
||
|
- name: "Re-run fails report"
|
||
|
run: |
|
||
|
.github/scripts/rerun_fails_report.sh /tmp/gotestsum-rerun-fails
|
||
|
- name: Notify Slack
|
||
|
if: failure()
|
||
|
run: .github/scripts/notify_slack.sh
|