Skip to content

Commit

Permalink
Merge pull request #62 from Alpaca-zip/fix/workflows
Browse files Browse the repository at this point in the history
[noetic-devel] Fix workflows
  • Loading branch information
Alpaca-zip committed Feb 14, 2024
2 parents ce0951f + 03bc329 commit 6db78e7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
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

0 comments on commit 6db78e7

Please sign in to comment.