-
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.
Signed-off-by: Raul Sanchez-Mateos <[email protected]>
- Loading branch information
1 parent
21cb945
commit 214f8a1
Showing
7 changed files
with
143 additions
and
19 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: 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: 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,31 @@ | ||
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: | ||
- 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