forked from polkadot-fellows/runtimes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,11 @@ jobs: | |
if: startsWith(github.event.comment.body, '/cmd') | ||
runs-on: arc-runners-beefy-stg | ||
steps: | ||
- name: Install updates and protobuf-compiler | ||
run: | | ||
sudo apt update && sudo apt install --assume-yes \ | ||
pkg-config g++ make cmake protobuf-compiler curl libssl-dev libclang-dev libudev-dev git | ||
- name: Generate a token | ||
id: commands_token | ||
uses: actions/[email protected] | ||
|
@@ -69,11 +74,6 @@ jobs: | |
body: `Command "${{ steps.get-pr-comment.outputs.group2 }}" has started! Output: [Link to pipeline](${{ env.workflow_link }})` | ||
}) | ||
- name: Install updates and protobuf-compiler | ||
run: | | ||
sudo apt update && sudo apt install --assume-yes \ | ||
pkg-config g++ make cmake protobuf-compiler curl libssl-dev libclang-dev libudev-dev git | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
|