Skip to content

Commit

Permalink
change correct circleci job
Browse files Browse the repository at this point in the history
  • Loading branch information
DnlLrssn committed Mar 4, 2025
1 parent dc22f31 commit 4f27531
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:
name: Run Golang tests
command: |
make alltests
- store_artifacts:
path: coverage.html
destination: coverage.html
- store_artifacts:
path: coverage.csv
destination: coverage.csv
- run:
name: Minimum linting required for Pull Requests to be accepted.
command: |
Expand Down Expand Up @@ -61,12 +67,6 @@ jobs:
- store_artifacts:
path: build/version
destination: version
- store_artifacts:
path: coverage.html
destionation: coverage.html
- store_artifacts:
path: coverage.csv
destionation: coverage.csv
- persist_to_workspace:
root: ./
paths:
Expand Down Expand Up @@ -96,12 +96,12 @@ jobs:
name: Run Golang tests
command: |
make alltests
- run:
name: Save coverage files (otherwise removed by clean)
command: |
mkdir -p ./coverage
mv coverage.html ./coverage
mv coverage.csv ./coverage
- store_artifacts:
path: coverage.html
destination: coverage.html
- store_artifacts:
path: coverage.csv
destination: coverage.csv
- run:
name: Build gopherciser for Linux, Darwin and Windows (amd64)
command: |
Expand All @@ -110,9 +110,6 @@ jobs:
key: dependency-cache-<< parameters.version >>{{ checksum "go.sum" }}
paths:
- "/home/circleci/go/pkg/mod"
- store_artifacts:
path: coverage
destination: coverage
- store_artifacts:
path: build
destination: build
Expand Down

0 comments on commit 4f27531

Please sign in to comment.