forked from plctlab/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[COREV] Add CI workflow file corev-llvm-tests.yml. (plctlab#23)
Note: this also disabled the windows test environment for the time being. Because we're using GitHub hosted runner, which maximum number of timeout-minutes is 360. Otherwise the job will exceed the time and be canceled.
- Loading branch information
1 parent
4c3dc69
commit 94e85c4
Showing
2 changed files
with
41 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: COREV LLVM Tests | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
ignore-forks: true | ||
branches: | ||
- 'development' | ||
paths: | ||
- 'llvm/**' | ||
- '.github/workflows/corev-llvm-tests.yml' | ||
- '.github/workflows/llvm-project-tests.yml' | ||
pull_request: | ||
ignore-forks: true | ||
branches: | ||
- 'development' | ||
paths: | ||
- 'llvm/**' | ||
- '.github/workflows/corev-llvm-tests.yml' | ||
- '.github/workflows/llvm-project-tests.yml' | ||
|
||
concurrency: | ||
# Skip intermediate builds: always. | ||
# Cancel intermediate builds: only if it is a pull request build. | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | ||
|
||
jobs: | ||
check_all: | ||
if: github.repository_owner == 'openhwgroup' | ||
name: Test llvm,clang | ||
uses: ./.github/workflows/llvm-project-tests.yml | ||
with: | ||
build_target: check-all | ||
projects: clang | ||
|
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