-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0055c2d
commit ceda4f3
Showing
10 changed files
with
150 additions
and
75 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
- cmake/** | ||
- hal/** | ||
- .github/actions/do_build_ock/** | ||
- .github/actions/setup_ubuntu_build/** | ||
- .github/actions/setup_build/** | ||
- .github/workflows/pull_request.yml | ||
- CMakeLists.txt | ||
concurrency: | ||
|
@@ -27,10 +27,11 @@ jobs: | |
- name: Checkout repo | ||
uses: actions/[email protected] | ||
- name: setup-ubuntu | ||
uses: ./.github/actions/setup_ubuntu_build | ||
uses: ./.github/actions/setup_build | ||
with: | ||
llvm_version: '18' | ||
llvm_build_type: RelAssert | ||
os: ubuntu | ||
- run: echo WORKSPACE is $GITHUB_WORKSPACE && echo PWD is `pwd` && ls -al | ||
- name: build ock | ||
uses: ./.github/actions/do_build_ock | ||
|
@@ -46,4 +47,51 @@ jobs: | |
hal_refsi_soc: G1 | ||
hal_refsi_thread_mode: WG | ||
debug_support: ON | ||
gtest_launcher: "/usr/bin/python;-u;${{ github.workspace }}/scripts/gtest-terse-runner.py" | ||
|
||
############### JOB mr-windows-msvc-x86_64-llvm-latest-cl3-0-offline | ||
|
||
mr-windows-msvc-x86_64-llvm-latest-cl3-0-offline: | ||
runs-on: windows-2019 | ||
steps: | ||
|
||
- name: Setup Windows llvm base | ||
uses: llvm/actions/setup-windows@main | ||
with: | ||
arch: amd64 | ||
|
||
- name: Checkout repo | ||
uses: actions/[email protected] | ||
|
||
# installs tools, ninja, installs llvm and sets up sccahe | ||
- name: setup-windows | ||
uses: ./.github/actions/setup_build | ||
with: | ||
llvm_version: 19 | ||
llvm_build_type: RelAssert | ||
os: windows | ||
|
||
- name: build ock x86_64 relassert | ||
uses: ./.github/actions/do_build_ock | ||
with: | ||
build_targets: check-ock | ||
enable_api: "" | ||
builtin_kernel: ON | ||
shell_to_use: pwsh | ||
gtest_launcher: "python3;-u;${{ github.workspace }}/scripts/gtest-terse-runner.py" | ||
debug_support: ON | ||
c_compiler: 'cl.exe' | ||
cxx_compiler: 'cl.exe' | ||
|
||
- name: build ock x86_64 offline | ||
uses: ./.github/actions/do_build_ock | ||
with: | ||
build_targets: check-ock | ||
runtime_compiler_enabled: OFF | ||
external_clc: "${{ github.workspace }}/build/bin/clc.exe" | ||
shell_to_use: pwsh | ||
gtest_launcher: "python3;-u;${{ github.workspace }}/scripts/gtest-terse-runner.py" | ||
debug_support: ON | ||
install_dir: ${{ github.workspace }}/install_offline | ||
build_dir: ${{ github.workspace }}/build_offline | ||
c_compiler: 'cl.exe' | ||
cxx_compiler: 'cl.exe' |
This file contains 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
This file contains 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