Skip to content

Commit

Permalink
add fedora pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Svastits committed Jan 30, 2024
1 parent e66791a commit 0f8aa27
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/ci_fedora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
fedora_version: [38, 39]
container:
image: fedora:${{ matrix.fedora_version }}

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: |
#!/bin/bash
apt update && apt -y install cmake build-essential pkg-config libssl-dev python3-protobuf protobuf-compiler-grpc libgrpc++-dev nanopb libnanopb-dev && cd kuka-external-control-sdk && mkdir build
- name: Build and install
run: cmake .. && make install
working-directory: ./kuka-external-control-sdk/build
2 changes: 1 addition & 1 deletion .github/workflows/ci_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-20.04, ubuntu-18.04]
os: [ubuntu-latest, ubuntu-20.04]
runs-on: ${{ matrix.os || 'ubuntu-latest' }}

steps:
Expand Down

0 comments on commit 0f8aa27

Please sign in to comment.