-
Notifications
You must be signed in to change notification settings - Fork 24
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
Showing
1 changed file
with
16 additions
and
38 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 |
---|---|---|
|
@@ -4,49 +4,27 @@ on: | |
push: | ||
branches: | ||
- master | ||
- 'dev**' | ||
pull_request: | ||
paths: | ||
- 'tesseract**' | ||
- '.github/workflows/clang_format.yml' | ||
- '**clang-format' | ||
schedule: | ||
- cron: '0 5 * * *' | ||
|
||
jobs: | ||
industrial_ci: | ||
name: Format | ||
runs-on: ubuntu-latest | ||
env: | ||
CI_NAME: Clang-Format | ||
OS_NAME: ubuntu | ||
OS_CODE_NAME: focal | ||
ROS_DISTRO: foxy | ||
ROS_REPO: main | ||
ROSDEP_SKIP_KEYS: "catkin taskflow" | ||
DOCKER_IMAGE: "ros:foxy" | ||
CLANG_FORMAT_CHECK: file | ||
CLANG_FORMAT_VERSION: 10 | ||
clang_format: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Free Disk Space | ||
- name: Run clang format | ||
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}} | ||
sudo apt update | ||
sudo apt install -y git clang-format | ||
if [ $? -ge 1 ]; then return 1; fi | ||
./.run-clang-format | ||
if [ $? -ge 1 ]; then return 1; fi | ||
output=$(git diff) | ||
if [ -n "$output" ]; then exit 1; else exit 0; fi |