Skip to content

Commit

Permalink
echo
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Jan 12, 2024
1 parent 657baaf commit 94b289e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
10 changes: 8 additions & 2 deletions .github/actions/host-compile-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,20 @@ runs:
with:
python-version: "3.10"

- name: Echo context
shell: bash
run: |
echo github context ${{ github }}
echo env context ${{ env }}
- name: Cache stm32 tools
uses: './.github/actions/cache-stm32-tools'
uses: '${{ github.action_path }}/cache-stm32-tools'

- name: Check out Opentrons monorepo
uses: actions/checkout@v4
with:
repository: 'Opentrons/opentrons'
path: ${{ GITHUB_WORKSPACE }}/opentrons
path: opentrons

- name: Configure
shell: bash
Expand Down
22 changes: 12 additions & 10 deletions .github/workflows/gripper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ env:
defaults:
run:
shell: bash
working-directory: ot3-firmware

jobs:
cross-compile-check:
Expand All @@ -59,6 +60,8 @@ jobs:
steps:
- name: Checkout ot3-firmware repository
uses: actions/checkout@v4
with:
path: ot3-firmware

- name: Cross-compile setup
uses: './.github/actions/cross-compile-setup'
Expand All @@ -84,17 +87,16 @@ jobs:
path: ot3-firmware

- name: Host Compile setup
uses: './.github/actions/host-compile-setup'
working-directory: ot3-firmware

- name: 'Build and test'
run: cmake --build ./build-host --target gripper-build-and-test

- name: 'Setup state_manager'
run: cmake --build ./build-host/ --target state-manager-setup
uses: './ot3-firmware/.github/actions/host-compile-setup'

- name: 'Build simulator'
run: cmake --build ./build-host --target gripper-simulator
# - name: 'Build and test'
# run: cmake --build ./build-host --target gripper-build-and-test
#
# - name: 'Setup state_manager'
# run: cmake --build ./build-host/ --target state-manager-setup
#
# - name: 'Build simulator'
# run: cmake --build ./build-host --target gripper-simulator

# - name: "Upload artifacts"
# if: github.event_name != 'pull_request'
Expand Down

0 comments on commit 94b289e

Please sign in to comment.