-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80d9579
commit 5686421
Showing
5 changed files
with
170 additions
and
29 deletions.
There are no files selected for viewing
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,54 @@ | ||
name: Bionic-Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
schedule: | ||
- cron: '0 5 * * *' | ||
|
||
jobs: | ||
industrial_ci: | ||
name: Melodic | ||
runs-on: ubuntu-latest | ||
env: | ||
CI_NAME: Bionic-Build | ||
OS_NAME: ubuntu | ||
OS_CODE_NAME: bionic | ||
ROS_DISTRO: melodic | ||
ROS_REPO: main | ||
NOT_TEST_BUILD: true | ||
UPSTREAM_WORKSPACE: 'dependencies_ros1.rosinstall' | ||
ROSDEP_SKIP_KEYS: "iwyu cmake_common_scripts" | ||
CCACHE_DIR: "/home/runner/work/noether/noether/Bionic-Build/.ccache" | ||
TARGET_CMAKE_ARGS: "-DNURBS_FOUND=TRUE" | ||
DOCKER_IMAGE: "rosindustrial/noether:melodic" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Free Disk Space | ||
run: | | ||
sudo swapoff -a | ||
sudo rm -f /swapfile | ||
sudo apt clean | ||
docker rmi $(docker image ls -aq) | ||
df -h | ||
- name: Prepare ccache timestamp | ||
id: ccache_cache_timestamp | ||
shell: cmake -P {0} | ||
run: | | ||
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) | ||
message("::set-output name=timestamp::${current_date}") | ||
- name: ccache cache files | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.CI_NAME }}/.ccache | ||
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }} | ||
restore-keys: | | ||
${{ env.CI_NAME }}-ccache- | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{env}} |
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,54 @@ | ||
name: Focal-Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
schedule: | ||
- cron: '0 5 * * *' | ||
|
||
jobs: | ||
industrial_ci: | ||
name: Noetic | ||
runs-on: ubuntu-latest | ||
env: | ||
CI_NAME: Focal-Build | ||
OS_NAME: ubuntu | ||
OS_CODE_NAME: focal | ||
ROS_DISTRO: noetic | ||
ROS_REPO: main | ||
NOT_TEST_BUILD: true | ||
UPSTREAM_WORKSPACE: 'dependencies_ros1.rosinstall' | ||
ROSDEP_SKIP_KEYS: "iwyu cmake_common_scripts" | ||
CCACHE_DIR: "/home/runner/work/noether/noether/Focal-Build/.ccache" | ||
TARGET_CMAKE_ARGS: "-DNURBS_FOUND=TRUE" | ||
DOCKER_IMAGE: "rosindustrial/noether:noetic" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Free Disk Space | ||
run: | | ||
sudo swapoff -a | ||
sudo rm -f /swapfile | ||
sudo apt clean | ||
docker rmi $(docker image ls -aq) | ||
df -h | ||
- name: Prepare ccache timestamp | ||
id: ccache_cache_timestamp | ||
shell: cmake -P {0} | ||
run: | | ||
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) | ||
message("::set-output name=timestamp::${current_date}") | ||
- name: ccache cache files | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.CI_NAME }}/.ccache | ||
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }} | ||
restore-keys: | | ||
${{ env.CI_NAME }}-ccache- | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{env}} |
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,54 @@ | ||
name: Xenial-Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
schedule: | ||
- cron: '0 5 * * *' | ||
|
||
jobs: | ||
industrial_ci: | ||
name: Kinetic | ||
runs-on: ubuntu-latest | ||
env: | ||
CI_NAME: Xenial-Build | ||
OS_NAME: ubuntu | ||
OS_CODE_NAME: xenial | ||
ROS_DISTRO: kinetic | ||
ROS_REPO: main | ||
NOT_TEST_BUILD: true | ||
UPSTREAM_WORKSPACE: 'dependencies_ros1.rosinstall' | ||
ROSDEP_SKIP_KEYS: "iwyu cmake_common_scripts" | ||
CCACHE_DIR: "/home/runner/work/noether/noether/Xenial-Build/.ccache" | ||
TARGET_CMAKE_ARGS: "-DNURBS_FOUND=TRUE" | ||
DOCKER_IMAGE: "rosindustrial/noether:kinetic" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Free Disk Space | ||
run: | | ||
sudo swapoff -a | ||
sudo rm -f /swapfile | ||
sudo apt clean | ||
docker rmi $(docker image ls -aq) | ||
df -h | ||
- name: Prepare ccache timestamp | ||
id: ccache_cache_timestamp | ||
shell: cmake -P {0} | ||
run: | | ||
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) | ||
message("::set-output name=timestamp::${current_date}") | ||
- name: ccache cache files | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.CI_NAME }}/.ccache | ||
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }} | ||
restore-keys: | | ||
${{ env.CI_NAME }}-ccache- | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{env}} |
This file was deleted.
Oops, something went wrong.
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