Skip to content

Commit

Permalink
Fix logical error in build action.
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Jul 24, 2023
1 parent 87a43d0 commit 38c7d24
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
partial:
description: Skip the installation of extra dependencies
required: false
default: true
default: false

runs:
using: "composite"
Expand Down Expand Up @@ -46,21 +46,21 @@ runs:
- name: Install pylint
run: python3 -m pip install pylint
shell: bash
if: ${{ inputs.partial == 'true' }}
if: ${{ inputs.partial == 'false' }}
- name: Install pnpm
run: npm i -g pnpm
shell: bash
if: ${{ inputs.partial == 'true' }}
if: ${{ inputs.partial == 'false' }}
- name: Setup Rust
uses: ATiltedTree/setup-rust@v1
with:
rust-version: stable
components: clippy
if: ${{ inputs.partial == 'true' }}
if: ${{ inputs.partial == 'false' }}
- name: Install RTI
run: |
cd lingua-franca
.github/actions/install-rti/install.sh
cd ..
shell: bash
if: ${{ (runner.os == 'macOS' || runner.os == 'Linux') && inputs.partial == 'true' }}
if: ${{ (runner.os == 'macOS' || runner.os == 'Linux') && inputs.partial == 'false' }}

0 comments on commit 38c7d24

Please sign in to comment.