-
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.
* Test PR workflows * ignore editor profile files * Test environment and workflow
- Loading branch information
1 parent
651e3f7
commit c15791a
Showing
6 changed files
with
56 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Basic validation | |
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
|
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,32 @@ | ||
name: Test Workflow | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
list: | ||
name: 'List Repos' | ||
runs-on: [ubuntu-latest] | ||
outputs: | ||
matrix: ${{ steps.list.outputs.value }} | ||
steps: | ||
- name: 'Check out devops repo' | ||
uses: actions/checkout@v3 | ||
- id: list | ||
name: 'List automerge repos' | ||
run: echo "value=$(cat test/automerge.json | tr -d '\n')" >> $GITHUB_OUTPUT | ||
|
||
automerge-test: | ||
name: 'Automerge' | ||
runs-on: [ubuntu-latest] | ||
needs: list | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
value: ${{fromJson(needs.list.outputs.matrix)}} | ||
steps: | ||
- name: 'Automerge runtimeverification/${{ matrix.value }}' | ||
uses: ./ # This uses the action in the root directory | ||
with: | ||
org: 'runtimeverification' | ||
repo: ${{ matrix.value }} | ||
token: ${{ secrets.JENKINS_GITHUB_PAT }} |
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,6 @@ | ||
# Ignore vscode files | ||
|
||
.vscode | ||
|
||
# Ignore Test Environment Files | ||
tmp-* |
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 |
---|---|---|
@@ -1,18 +1,3 @@ | ||
[ | ||
"algorand-sc-semantics" | ||
, "amp" | ||
, "audit-kontrol-template" | ||
, "avm-semantics" | ||
, "blockchain-k-plugin" | ||
, "blockswap-server" | ||
, "casper-cbc-proofs" | ||
, "c-semantics" | ||
, "erc20-verification" | ||
, "ercx" | ||
, "evm-semantics" | ||
, "firefly" | ||
, "firefly-web" | ||
, "foundry-tests" | ||
, "haskell-backend" | ||
, "homebrew-k" | ||
"devops-actions" | ||
] |