Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[noetic-devel] Fix workflows #62

Merged
merged 2 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/noetic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: free up disk space
run: |
sudo apt-get -qq purge build-essential "ghc*"
sudo apt-get clean
docker system prune -af
sudo rm -rf /usr/local
df -h
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
Expand All @@ -43,6 +50,13 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: free up disk space
run: |
sudo apt-get -qq purge build-essential "ghc*"
sudo apt-get clean
docker system prune -af
sudo rm -rf /usr/local
df -h
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
Expand All @@ -56,6 +70,13 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: free up disk space
run: |
sudo apt-get -qq purge build-essential "ghc*"
sudo apt-get clean
docker system prune -af
sudo rm -rf /usr/local
df -h
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
Expand All @@ -82,6 +103,13 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: free up disk space
run: |
sudo apt-get -qq purge build-essential "ghc*"
sudo apt-get clean
docker system prune -af
sudo rm -rf /usr/local
df -h
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
6 changes: 3 additions & 3 deletions .github/workflows/noetic-docker-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ROS-noetic Docker Image Deployment

on:
pull_request:
types:
- closed
push:
branches:
- noetic-devel
workflow_dispatch:

jobs:
Expand Down
Loading