Merge branch 'dev' into lucky

Signed-off-by: coleramos425 <colramos@amd.com>
Bu işleme şunda yer alıyor:
coleramos425
2023-01-23 15:28:35 -06:00
ebeveyn 60eca50d02
işleme 00c9ff9493
333 değiştirilmiş dosya ile 29217 ekleme ve 35029 silme
+56
Dosyayı Görüntüle
@@ -0,0 +1,56 @@
name: Documentation
on:
push:
branches: ["main"]
paths:
- 'src/docs'
- '.github/workflows/docs.yml'
- 'VERSION'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
container:
image: sphinxdoc/sphinx
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Additional python packages
run: pip3 install recommonmark myst_parser sphinx_rtd_theme
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Build html
run: |
cd src/docs
make html
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./src/docs/_build/html
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
+15 -12
Dosyayı Görüntüle
@@ -1,7 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: analyze-workloads
name: RHEL 8
# Controls when the workflow will run
on:
@@ -19,7 +18,7 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: rocm/dev-ubuntu-22.04:5.3
image: colramos/target-images:rhel8
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Cancel any previous runs
@@ -27,26 +26,30 @@ jobs:
uses: styfle/cancel-workflow-action@0.11.0
- name: Install baseline OS dependencies
run: |
sudo apt-get update
sudo apt-get install -y git
sudo apt-get install -y python3-pip
sudo apt-get install -y cmake
- name: Checkout
yum -y update
yum -y install git
yum -y install python39
yum -y install cmake3
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GH_PAT }}
- name: Install Python prereqs
run: |
python3 -m pip install -r requirements.txt
python3 -m pip install pyinstaller pytest pytest-cov
- name: Configure and install
python3.9 -m pip install -r requirements.txt
python3.9 -m pip install pyinstaller pytest pytest-cov mock
- name: Configure and install
run: |
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/opt/omniperf ..
make install
- name: run ctest
- name: CTest- Analyze Commands
run: |
cd build
ctest --verbose -R test_analyze_commands
- name: CTest- Analyze Workloads
run: |
cd build
ctest --verbose -R test_analyze_workloads test_saved_analysis
+12
Dosyayı Görüntüle
@@ -13,8 +13,18 @@ jobs:
env:
INSTALL_DIR: /tmp/foo1
steps:
- name: Set git sha mode
id: sha-mode
run: |
if [ "$EVENT" == 'pull_request' ]; then
echo "sha=${{github.event.pull_request.head.sha}}" >> $GITHUB_OUTPUT
else
echo "sha=$GITHUB_SHA" >> $GITHUB_OUTPUT
fi
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ steps.sha-mode.sha }}
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
- name: Install Python
@@ -73,6 +83,8 @@ jobs:
- name: Verify expected paths
run: |
test -d $INSTALL_DIR/omniperf
test -s $INSTALL_DIR/omniperf/VERSION
test -s $INSTALL_DIR/omniperf/VERSION.sha
test -d $INSTALL_DIR/omniperf/bin
test -x $INSTALL_DIR/omniperf/bin/omniperf
test -d $INSTALL_DIR/modulefiles/omniperf
+6 -2
Dosyayı Görüntüle
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: analyze-commands
name: Ubuntu 20.04
# Controls when the workflow will run
on:
@@ -45,7 +45,11 @@ jobs:
cd build
cmake -DCMAKE_INSTALL_PREFIX=/opt/omniperf ..
make install
- name: Run ctest
- name: CTest- Analyze Commands
run: |
cd build
ctest --verbose -R test_analyze_commands
- name: CTest- Analyze Workloads
run: |
cd build
ctest --verbose -R test_analyze_workloads test_saved_analysis