-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Linux installation from sources (#220)
* Fix Linux installation from sources Signed-off-by: Lucia Echevarria <luciaechevarria@eprosima.com> * Change installation folder names to jazzy Signed-off-by: Lucia Echevarria <luciaechevarria@eprosima.com> * Update swig version to 4.1 Signed-off-by: Lucia Echevarria <luciaechevarria@eprosima.com> * Update github actions Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> * Update readme Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> * Add missing plotjuggler dependencies Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> * Add name to mirror workflow Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> * Add java version 17 required note Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> * Remove default swig version Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> --------- Signed-off-by: Lucia Echevarria <luciaechevarria@eprosima.com> Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com> Co-authored-by: Raul Sanchez-Mateos <raul@eprosima.com>
- Loading branch information
1 parent
50db176
commit ad2c26b
Showing
12 changed files
with
177 additions
and
54 deletions.
There are no files selected for viewing
18 changes: 10 additions & 8 deletions
18
...orkflows/install_linux_from_binaries.yaml → ...hub/workflows/humble_binaries_ubuntu.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 10 additions & 8 deletions
18
...workflows/install_linux_from_sources.yaml → .github/workflows/humble_sources_ubuntu.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: iron-binaries-ubuntu-22.04 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
branches: | ||
- iron | ||
|
||
push: | ||
branches: | ||
- iron | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
ubuntu-install-from-binaries: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref || 'iron'}} | ||
submodules: 'recursive' | ||
|
||
- name: Install from binaries | ||
run: | | ||
bash docs/resources/scripts/linux_binary_installation.bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: iron-sources-ubuntu-22.04 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
branches: | ||
- iron | ||
|
||
push: | ||
branches: | ||
- iron | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
ubuntu-install-from-sources: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref || 'iron'}} | ||
submodules: 'recursive' | ||
|
||
- name: Install from sources | ||
run: | | ||
bash docs/resources/scripts/linux_source_installation.bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: jazzy-binaries-ubuntu-24.04 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
branches: | ||
- jazzy | ||
- main | ||
|
||
push: | ||
branches: | ||
- jazzy | ||
- main | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
ubuntu-install-from-binaries: | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref || 'jazzy'}} | ||
submodules: 'recursive' | ||
|
||
- name: Install from binaries | ||
run: | | ||
bash docs/resources/scripts/linux_binary_installation.bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: jazzy-sources-ubuntu-24.04 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
branches: | ||
- jazzy | ||
- main | ||
|
||
push: | ||
branches: | ||
- jazzy | ||
- main | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
ubuntu-install-from-sources: | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- name: Remove default swig version | ||
run: sudo apt-get remove -y swig | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref || 'jazzy'}} | ||
submodules: 'recursive' | ||
|
||
- name: Install from sources | ||
run: | | ||
bash docs/resources/scripts/linux_source_installation.bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
|
||
# .github/workflows/mirror.yml | ||
name: mirror | ||
|
||
on: | ||
push: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters