Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Nov 26, 2023
1 parent 56cf595 commit 952381e
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build&[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,21 @@ jobs:
build:
strategy:
matrix:
os: [arc-runner-set]
runner: [arc-runner-set]

runs-on: ${{ matrix.os }}
container: docker.io/rust:latest
runs-on: ${{ matrix.runner }}

steps:
- name: Install
run: apt update && apt upgrade -y && apt install -y git build-essential cmake curl pkg-config libssl-dev libclang-dev
run: sudo apt update && sudo apt upgrade -y && sudo apt install -y git build-essential curl pkg-config libssl-dev libclang-dev
- name: Setup | Rust
uses: ATiltedTree/setup-rust@v1
with:
rust-version: stable
- name: Setup | CMake
uses: jwlawson/[email protected]
with:
cmake-version: '3.24.0'
- uses: actions/checkout@v3
with:
submodules: recursive
Expand Down

0 comments on commit 952381e

Please sign in to comment.