Skip to content

Commit

Permalink
Updates CI.
Browse files Browse the repository at this point in the history
Signed-off-by: Franco Cipollone <[email protected]>
  • Loading branch information
francocipollone committed Oct 16, 2023
1 parent 7dc5add commit 1e46c23
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: gcc

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 9 * * *' # 9:00am UTC, 1:00am PST.
Expand All @@ -14,6 +18,11 @@ env:
UBUNTU_NAME: focal
UBUNTU_VERSION: 20.04

# Cancel previously running PR jobs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
compile_and_test:
name: Compile and test
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/maliput_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: maliput_full_build

on:
push:
branches:
- main
pull_request:
branches:
- main
Expand All @@ -13,6 +15,11 @@ env:
PACKAGE_NAME: maliput_full
ROS_DISTRO: foxy

# Cancel previously running PR jobs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
compile_and_test:
name: Build
Expand Down

0 comments on commit 1e46c23

Please sign in to comment.