mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Directly install protobuf-compiler without using an external action (#524)
* Directly install protobuf-compiler without using an external action * Remove unused "github-token" input
This commit is contained in:
14
.github/actions/build-dependencies/action.yml
vendored
14
.github/actions/build-dependencies/action.yml
vendored
@@ -1,12 +1,6 @@
|
||||
name: build-dependencies
|
||||
description: Installs build dependencies for Serai
|
||||
|
||||
inputs:
|
||||
github-token:
|
||||
description: "GitHub token to install Protobuf with"
|
||||
require: true
|
||||
default:
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
@@ -26,17 +20,11 @@ runs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [ "$RUNNER_OS" == "Linux" ]; then
|
||||
sudo apt install -y ca-certificates
|
||||
sudo apt install -y ca-certificates protobuf-compiler
|
||||
elif [ "$RUNNER_OS" == "Windows" ]; then
|
||||
choco install protoc
|
||||
fi
|
||||
|
||||
- name: Install Protobuf
|
||||
uses: arduino/setup-protoc@a8b67ba40b37d35169e222f3bb352603327985b6
|
||||
with:
|
||||
repo-token: ${{ inputs.github-token }}
|
||||
if: runner.os == 'Linux'
|
||||
|
||||
- name: Install solc
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user