Skip to content

Commit

Permalink
Fix external links – Stint 2 (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini authored Sep 14, 2023
1 parent 952adb5 commit 4cb94a3
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@main
- name: Dependencies
run: |
pip install git+https://github.com/linkchecker/linkchecker.git
pip install --user git+https://github.com/linkchecker/linkchecker.git
echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- name: Fetch repository name
id: repo-name
run: |
echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT
echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> ${GITHUB_OUTPUT}
- name: Run checker
run: |
linkchecker https://${{ github.repository_owner }}.github.io/${{ steps.repo-name.outputs.REPOSITORY_NAME }}/ --check-extern --no-warnings
linkchecker --config=./scripts/linkchecker/linkcheckerrc https://${{ github.repository_owner }}.github.io/${{ steps.repo-name.outputs.REPOSITORY_NAME }}/
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Latest version is based on Ubuntu Server 20.04.2
Please check that the BIOS configuration allows to boot from USB drive.

## Create the USB installer
The first step is download the [official Ubuntu 20.04 LTS Server install media](https://releases.ubuntu.com/focal/ubuntu-20.04.1-live-server-amd64.iso) from the [release page](https://releases.ubuntu.com/focal/)
The first step is to download the **official Ubuntu 20.04 LTS Server install media** from the [release page](https://releases.ubuntu.com/focal). Search for `ubuntu-20.04.x-live-server-amd64.iso`.

Then please create the USB installer using an USB memory and a tool like [Balena Etcher](https://www.balena.io/etcher/).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For this reason, if the calibration needs a particular value of `calibrationZero

## The available calibrations in details
---
Here are described the usage of the various calibration types; the `param` are in the [calibrators files](https://github.com/robotology/robots-configuration/tree/master/iCubHongKong01/calibrators) where you'll find a file for each part of the robot and looks like :
Here are described the usage of the various calibration types; the `param` are in the [calibrators files](https://github.com/robotology/robots-configuration/tree/master/robots-icebox/iCubHongKong01/calibrators) where you'll find a file for each part of the robot and looks like :

```xml
<group name="CALIBRATION">
Expand Down
2 changes: 1 addition & 1 deletion docs/robot_sensors/yarp_nws_convention.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ For each eye, there will be a `frameGrabber_nws_yarp` that will open the followi

!!! warning

These YARP ports are not meant to be accessed directly, but should be accessed instead via the [`remote_framegrabber`](https://www.yarp.it/latest/classRemoteFrameGrabber.html) device.
These YARP ports are not meant to be accessed directly, but should be accessed instead via the `remote_framegrabber` device.

The client device will expose the sensors thanks to the related [Media Interfaces](https://www.yarp.it/latest/group__dev__iface__media.html).

Expand Down
4 changes: 2 additions & 2 deletions docs/upgrade_kits/head_4k/support.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ The NVIDIA Jetson has to be configured following [the flash procedure](../../icu

If the image has been [installed from scratch](../../icub_operating_systems/icubos/jetpack.md#flash-a-new-image-from-scratch), an initial configuration is also required, which consists in:

- Set the `icub` as `host` and `icub-head-cam` as `hostname`
- [Configure the network bridge and wifi](https://github.com/icub-tech-iit/setups-os-configuration/blob/master/system-files/iCubOS/ubuntu_20.04_bridge/README.md)
- Set the `icub` as `host` and `icub-head-cam` as `hostname`.
- [Configure the network bridge and wifi](https://github.com/icub-tech-iit/setups-os-configuration/blob/master/system-files/iCubOS/ubuntu_20.04_bridge/README.md).

For using the images provided by the new Basler camera over the YARP network, it is needed to compile and install [`yarp-device-pylon`](https://github.com/robotology/yarp-device-pylon#2-how-to-use-basler-pylon-cameras-as-a-yarp-device).
8 changes: 8 additions & 0 deletions scripts/linkchecker/linkcheckerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[checking]
sslverify=0

[output]
warnings=0

[filtering]
checkextern=1

0 comments on commit 4cb94a3

Please sign in to comment.