Skip to content

First add for KaaS & CI #1

First add for KaaS & CI

First add for KaaS & CI #1

Workflow file for this run

---
name: "Test Proofs"
on:
pull_request:
branches:
- main
- kontrol
jobs:
test:
runs-on: [self-hosted, linux, flyweight]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Proofs in KaaS
run: |
curl -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.JENKINS_GITHUB_PAT }}" \
https://api.github.com/repos/runtimeverification/_kaas_UnlockdFinance_unlockdv2-wallet/actions/workflows/unlockdfinance-kaas.yml/dispatches \
-d '{
"ref": "master",
"inputs": {
"branch_name": "${{ github.ref_name }}",
"extra_args": "script",
"statuses_sha": "${{ github.sha }}",
"org": "runtimeverification",
"repository": "_audits_UnlockdFinance_unlockdv2-wallet",
"auth_token": "'"${{ secrets.JENKINS_GITHUB_PAT }}"'"
}
}'