Skip to content

Commit

Permalink
Merge branch 'master' into routing_cost_subclassing
Browse files Browse the repository at this point in the history
  • Loading branch information
immel-f authored Feb 7, 2025
2 parents d45c36e + d5c1fc8 commit 3baa862
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ jobs:
sudo cp -r $HOME/dist/* /dist
- name: Store wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
name: dist-${{ matrix.python-version }}
path: dist/

test:
Expand All @@ -85,9 +85,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Restore wheel
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
pattern: dist-*
merge-multiple: true
path: dist/
- name: Setup Python
uses: actions/setup-python@v4
Expand All @@ -110,9 +111,10 @@ jobs:
needs: [build, test]
steps:
- name: Restore wheel
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
pattern: dist-*
merge-multiple: true
path: dist/

- name: Release
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
# Run tests for any PRs.
pull_request:

permissions:
issues: write
contents: write

jobs:
formatting:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -170,11 +174,11 @@ jobs:
docker rm -f lanelet2_test_${{ matrix.rosdistro }}_lcov;
- name: Report code coverage
uses: immel-f/[email protected].11
uses: immel-f/[email protected].13
if: ${{ matrix.rosdistro == 'noetic' }}
with:
coverage-files: ./lcov/full_coverage.lcov
artifact-name: code-coverage-report
artifact-name:
github-token: ${{ secrets.GITHUB_TOKEN }}

full_conan_installation:
Expand Down

0 comments on commit 3baa862

Please sign in to comment.