Skip to content

Commit fdf75d7

Browse files
author
Bernd Gassmann
committed
Rename master -> main
fix coverage calculation
1 parent eacf273 commit fdf75d7

File tree

13 files changed

+20
-20
lines changed

13 files changed

+20
-20
lines changed

.github/workflows/build_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Test
22

33
on:
44
push:
5-
branches: master
5+
branches: main
66
pull_request:
7-
branches: master
7+
branches: main
88

99
env:
1010
GTEST_OUTPUT: "xml:test_results"

.github/workflows/check_documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build and Test Documentation
22

33
on:
44
push:
5-
branches: master
5+
branches: main
66
pull_request:
7-
branches: master
7+
branches: main
88

99
permissions:
1010
contents: write

.github/workflows/code_coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ get_coverage() {
1515
lcov -q -i -c -d ${BUILD_DIR} -b ${SRC_DIR} --no-external -o initialCoverage_${PACKAGE_NAME}.info
1616
lcov -q -c -d ${BUILD_DIR} -b ${SRC_DIR} --no-external -o testCoverage_${PACKAGE_NAME}.info --rc lcov_branch_coverage=1
1717
lcov -q -a initialCoverage_${PACKAGE_NAME}.info -a testCoverage_${PACKAGE_NAME}.info -o coverage_${PACKAGE_NAME}.info --rc lcov_branch_coverage=1
18-
lcov -q -r coverage_${PACKAGE_NAME}.info "impl/test*" -o coverage_${PACKAGE_NAME}.info --rc lcov_branch_coverage=1
18+
lcov -q -r coverage_${PACKAGE_NAME}.info "test*" -o coverage_${PACKAGE_NAME}.info --rc lcov_branch_coverage=1
1919
grep -v -E 'D0Ev|D1Ev|C1Ev|C1Eb' coverage_${PACKAGE_NAME}.info > cleanedCoverage_${PACKAGE_NAME}.info
2020
lcov --summary cleanedCoverage_${PACKAGE_NAME}.info --rc lcov_branch_coverage=1
2121
genhtml -t ${PACKAGE_NAME} -p ${PWD}/${SRC_DIR} --branch-coverage -o coverage/${SRC_DIR} cleanedCoverage_${PACKAGE_NAME}.info

.github/workflows/code_format_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Check Code Formatting for carla-map libraries
22

33
on:
44
push:
5-
branches: master
5+
branches: main
66
pull_request:
7-
branches: master
7+
branches: main
88

99
permissions:
1010
contents: read

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: ["master"]
16+
branches: ["main"]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: ["master"]
19+
branches: ["main"]
2020
schedule:
2121
- cron: "0 0 * * 1"
2222

.github/workflows/release_qgis_plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
release:
55
types: [published]
66
push:
7-
branches: master
7+
branches: main
88
pull_request:
9-
branches: master
9+
branches: main
1010

1111
jobs:
1212
publish:

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
schedule:
1313
- cron: '20 7 * * 2'
1414
push:
15-
branches: ["master"]
15+
branches: ["main"]
1616

1717
# Declare default permissions as read only.
1818
permissions: read-all

.github/workflows/wheel.ad-map-access.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
release:
55
types: [published]
66
push:
7-
branches: master
7+
branches: main
88
pull_request:
9-
branches: master
9+
branches: main
1010

1111
permissions:
1212
contents: read

.github/workflows/wheel.ad-physics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
release:
55
types: [published]
66
push:
7-
branches: master
7+
branches: main
88
pull_request:
9-
branches: master
9+
branches: main
1010

1111
permissions:
1212
contents: read

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
44
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/carla-simulator/map.svg)](https://github.com/carla-simulator/map/releases/latest)
5-
[![Build Status](https://github.com/carla-simulator/map/workflows/Build%20and%20Test%20of%20AD-Map%20Library/badge.svg?branch=master)](https://github.com/carla-simulator/map/actions?query=workflow%3A%22Build+and+Test+of+AD-Map+Library%22)
5+
[![Build Status](https://github.com/carla-simulator/map/workflows/Build%20and%20Test%20of%20AD-Map%20Library/badge.svg?branch=main)](https://github.com/carla-simulator/map/actions?query=workflow%3A%22Build+and+Test+of+AD-Map+Library%22)
66

77
#### Table of contents
88
1. [Introduction](#introduction)

0 commit comments

Comments
 (0)