-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Corey Lewis <[email protected]>
- Loading branch information
Showing
627 changed files
with
101,385 additions
and
12,187 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ on: | |
repository_dispatch: | ||
types: | ||
- manifest-update | ||
# for testing: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
code: | ||
|
@@ -74,3 +76,32 @@ jobs: | |
with: | ||
token: ${{ secrets.PRIV_REPO_TOKEN }} | ||
tag: "l4v/proof-deploy/${{ github.event_name }}" | ||
|
||
rebase: | ||
name: Rebase platform branches | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branch: [imx8-fpu-ver, exynos5-ver] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ matrix.branch }} | ||
path: l4v-${{ matrix.branch }} | ||
fetch-depth: 0 | ||
# needed to trigger push actions on the -rebased branch | ||
# (implict GITHUB_TOKEN does not trigger further push actions). | ||
token: ${{ secrets.PRIV_REPO_TOKEN }} | ||
- name: Rebase | ||
run: | | ||
cd l4v-${{ matrix.branch }} | ||
git config --global user.name "seL4 CI" | ||
git config --global user.email "[email protected]" | ||
git rebase origin/master | ||
git status | ||
- name: Push | ||
run: | | ||
cd l4v-${{ matrix.branch }} | ||
git push -f origin HEAD:${{ matrix.branch }}-rebased |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
name: Proofs | ||
name: Proof PR | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,8 @@ on: | |
- rt | ||
- aarch64 | ||
pull_request: | ||
# for testing: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check: | ||
|
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
Oops, something went wrong.