Skip to content

Commit

Permalink
Merge pull request #1706 from lnis-uofu/xt_ci
Browse files Browse the repository at this point in the history
bring back reg tests on master branch and version updater is now triggered automatically on any changes to master branch
  • Loading branch information
tangxifan authored Jun 11, 2024
2 parents 3f98476 + 0cdc281 commit 62342fc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Test

# Run CI on push, PR, and weekly.

on:
workflow_dispatch:
pull_request:
push:
branches:
- 'master'
schedule:
- cron: "0 0 * * 0 " # weekly

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/cell_lib_test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Cell Library Tests

# Run CI on push, PR, and weekly.

on:
workflow_dispatch:
pull_request:
push:
branches:
- 'master'
schedule:
- cron: "0 0 * * 0 " # weekly

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name: Code Format
# Run CI on push, PR, and weekly.

on:
workflow_dispatch:
pull_request:
push:
branches:
- 'master'
schedule:
- cron: "0 0 * * 0 " # weekly

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/patch_updater.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Count Patches
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches:
- 'master'

env:
TAG_COMMIT: 8ee3fb8..
Expand Down Expand Up @@ -41,6 +42,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{env.BRANCH_NAME}}
force: true

- name: Create Auto PR
if: "!contains(steps.log.outputs.message, 'Updated Patch Count') && contains(steps.repo.outputs.message, 'lnis-uofu/OpenFPGA')"
Expand Down

0 comments on commit 62342fc

Please sign in to comment.