Skip to content

Commit

Permalink
Merge pull request #286 from robotology/devel
Browse files Browse the repository at this point in the history
[devel] -> [master] Preparation of v1.0.1
  • Loading branch information
diegoferigo authored Dec 24, 2020
2 parents 63015c3 + ce3b7f6 commit 84369b3
Show file tree
Hide file tree
Showing 6 changed files with 360 additions and 75 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ jobs:
if: |
github.event_name == 'release' ||
github.ref == 'refs/heads/master' ||
(startsWith(github.ref, 'refs/tags') && github.base_ref == 'refs/heads/master') ||
(github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'master')
run: |
sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" >\
Expand All @@ -99,7 +98,6 @@ jobs:
- name: '[Nightly Channel] Install Ignition ${{ matrix.ignition }}'
if: |
(github.event_name == 'push' && github.ref != 'refs/heads/master') ||
(startsWith(github.ref, 'refs/tags') && github.base_ref != 'refs/heads/master') ||
(github.event_name == 'pull_request' && github.event.pull_request.base.ref != 'master')
run: |
sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" >\
Expand Down Expand Up @@ -234,11 +232,18 @@ jobs:
# When this workflow will test other OSs, the sdist has to be created and pushed only once
- name: Create sdist
if: matrix.type == 'User' && startsWith(matrix.os, 'ubuntu')
if: matrix.type == 'User'
# if: matrix.type == 'User' && startsWith(matrix.os, 'ubuntu')
run: |
pip3 install cmake_build_extension setuptools_scm
python3 setup.py sdist
- uses: actions/upload-artifact@v2
if: matrix.type == 'User'
with:
name: packages
path: dist/*

# Validate the last tag accordingly to PEP440
# From https://stackoverflow.com/a/37972030/12150968
- name: Check PEP440 compliance
Expand Down
Loading

0 comments on commit 84369b3

Please sign in to comment.