Skip to content

Commit

Permalink
don't mix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjw committed Mar 23, 2021
1 parent ef0760b commit 3897255
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,12 @@ jobs:
strategy:
matrix:
env:
- {
IMAGE: 'foxy-ci',
CCOV: true,
- IMAGE: 'foxy-ci'
CCOV: true
AFTER_RUN_TARGET_TEST: './.ci.prepare_codecov'
}
- {
IMAGE: 'foxy-ci-testing',
EXPORT_COMPILE_COMMANDS: true,
- IMAGE: 'foxy-ci-testing'
EXPORT_COMPILE_COMMANDS: true
AFTER_RUN_TARGET_TEST: './.ci.clang_tidy'
}
env:
DOCKER_IMAGE: moveit/moveit2:${{ matrix.env.IMAGE }}
UPSTREAM_WORKSPACE: upstream.repos
Expand Down Expand Up @@ -49,9 +45,9 @@ jobs:
uses: pat-s/always-upload-cache@v2.1.3
with:
path: ${{ env.BASEDIR }}/target_ws
key: target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt') }}-${{ hashFiles('**/package.xml') }}-${{ github.run_id }}
key: target_ws-${{ env.CACHE_PREFIX }}-${{ '**/CMakeLists.txt', '**/package.xml') }}-${{ github.run_id }}
restore-keys: |
target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt') }}-${{ hashFiles('**/package.xml') }}
target_ws-${{ env.CACHE_PREFIX }}-${{ '**/CMakeLists.txt', '**/package.xml') }}
- name: cache ccache
uses: pat-s/always-upload-cache@v2.1.3
with:
Expand Down

0 comments on commit 3897255

Please sign in to comment.