-
Notifications
You must be signed in to change notification settings - Fork 40
DRAFT: migrate refsi_tutorial MRs #739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
alan-forbes-cp
wants to merge
12
commits into
uxlfoundation:main
Choose a base branch
from
alan-forbes-cp:alan/OR-776_migrate_refsi_tutorial
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
1c9ec0b
Set up template for new PR jobs
alan-forbes-cp fb930fa
missing :
alan-forbes-cp a13d45b
intermediate save
alan-forbes-cp 67bdab0
add run prereqs
alan-forbes-cp 6b23c6a
fix cookiecutter install
alan-forbes-cp 961264c
update job names and add logging
alan-forbes-cp d59039c
Intermediate save
alan-forbes-cp ac1c729
Fix extra_flags and kernel string
alan-forbes-cp 16f3f8d
update llvm dirs
alan-forbes-cp c17d00c
add setup-ubuntu
alan-forbes-cp 9b6f0b6
add safe dir
alan-forbes-cp 6140d0c
add cmake_path
alan-forbes-cp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
.github/actions/do_build_pr/run_ubuntu_gcc_x86_64_refsi_tutorial_end/action.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: run-ubuntu-gcc-x86_64-refsi-tutorial-end | ||
description: Build pr ubuntu-gcc-x86_64-refsi-tutorial-end | ||
|
||
inputs: | ||
cache_seed: | ||
type: boolean | ||
default: false | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: remove any old dirs | ||
shell: bash | ||
run: | ||
rm -rf build | ||
|
||
- name: build ock | ||
uses: ./.github/actions/do_build_ock | ||
with: | ||
build_targets: check-ock | ||
#build_dir: set to /refsi_tutorial ??? | ||
mux_targets_enable: refsi_tutorial | ||
use_linker: gold | ||
# Note : Refsi is not as complete as riscv (e.g. runtime linking) | ||
# so disable offline kernel tests | ||
offline_kernel_tests: OFF | ||
llvm_install_dir: /refsi_tutorial/build/llvm | ||
install_dir: /refsi_tutorial/build/install | ||
debug_support: ON | ||
cmake_path: /refsi_tutorial | ||
# HAL dir = /refsi_tutorial/hal_refsi_tutorial | ||
extra_flags: -DCA_REFSI_TUTORIAL_ENABLED=ON -DCA_EXTERNAL_ONEAPI_CON_KIT_DIR=${{ github.workspace }} -DCA_EXTERNAL_REFSI_TUTORIAL_HAL_DIR=/refsi_tutorial/hal_refsi_tutorial -DCA_BUILTINS_TOOLS_DIR=/refsi_tutorial/build/llvm/llvm_tools/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it might not make sense to be the same directory to be honest - maybe $GITHUB_WORKSPACE/refsi_tutorial?