Skip to content

Commit

Permalink
[ci] Adding basic public CI workflow with Rocky8 und Ubuntu22
Browse files Browse the repository at this point in the history
  • Loading branch information
dopitz authored and sherholz-intel committed Jul 24, 2024
1 parent af484dc commit efbd4c2
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/public.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
## Copyright 2024 Intel Corporation
## SPDX-License-Identifier: Apache-2.0

name: continuous (public)

on:
push:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions: read-all

jobs:
rocky-8:
runs-on: ubuntu-latest
container:
image: rockylinux:8
steps:
- name: Install packages (rocky 8)
run: |
yum -y install gcc-c++ clang tar git-lfs make tbb-devel
yum -y install cmake
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true

- name: Build and Run
run: |
gitlab/build.sh
ubuntu-22_04:
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
steps:
- name: Install packages (ubuntu 22.04)
run: |
apt-get update
apt-get -y upgrade
apt-get -y install g++ clang git-lfs libtbb-dev python3 pip
pip install --upgrade cmake
cmake --version
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true

- name: Build and Run
run: |
gitlab/build.sh

0 comments on commit efbd4c2

Please sign in to comment.