Skip to content

Commit

Permalink
add rhel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
Svastits committed Jan 31, 2024
1 parent 9cef37c commit c81ed01
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci_rhel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rhel_version: [8, 9]
fail-fast: false
container:
image: almalinux:8
image: almalinux:${{ matrix.rhel_version }}

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: |
#!/bin/bash
dnf install -y https://repo.almalinux.org/almalinux/almalinux-release-synergy-latest-8.noarch.rpm && dnf --enablerepo=powertools install -y cmake gcc-c++ python3-protobuf protobuf-compiler protobuf-devel openssl openssl-devel grpc-devel grpc-plugins && cd kuka-external-control-sdk && mkdir build
dnf install -y https://repo.almalinux.org/almalinux/almalinux-release-synergy-latest-${{ matrix.rhel_version }}.noarch.rpm && dnf --enablerepo=powertools install -y cmake gcc-c++ python3-protobuf protobuf-compiler protobuf-devel openssl openssl-devel grpc-devel grpc-plugins && cd kuka-external-control-sdk && mkdir build
- name: Build and install
run: cmake .. && make install
Expand Down

0 comments on commit c81ed01

Please sign in to comment.