Skip to content

Commit

Permalink
github actions: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
barshaul committed Dec 11, 2023
1 parent 04320aa commit 5eedc33
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-node-wrapper/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ inputs:
- arm64
target:
description: "Specified target for rust toolchain, ex. x86_64-apple-darwin"
required: false
type: string
required: true
default: "x86_64-unknown-linux-gnu"
publish:
description: "Enable building the wrapper in release mode"
required: false
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-python-wrapper/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ inputs:
- ubuntu-latest
target:
description: "Specified target for rust toolchain, ex. x86_64-apple-darwin"
required: false
type: string
required: true
default: "x86_64-unknown-linux-gnu"
publish:
description: "Enable building the wrapper in release mode"
required: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/install-shared-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ runs:
shell: bash
if: "${{ inputs.os == 'ubuntu-latest' }}"
run: |
sudo apt update
sudo apt install protobuf-compiler
sudo apt update -y
sudo apt install -y git gcc pkg-config protobuf-compiler openssl libssl-dev
- name: Install software dependencies for Amazon-Linux
shell: bash
Expand Down

0 comments on commit 5eedc33

Please sign in to comment.