Skip to content

Commit

Permalink
Merge pull request #512 from binpash/undo-table-fix
Browse files Browse the repository at this point in the history
Rename jobs. Undo posix issue when merging on main
  • Loading branch information
dkarnikis authored Mar 29, 2022
2 parents 41f8e40 + dc95e17 commit 92e5232
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pash-CI-issue
name: Performance
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
Expand All @@ -23,9 +23,9 @@ jobs:
hash=$(git rev-parse --short HEAD | tr -d "\n")
# construct the url for performance and correctness
perf="http://ctrl.pash.ndr.md/job=issue&branch=main&benchmark=PERFORMANCE&commit=$hash"
cor="http://ctrl.pash.ndr.md/job=issue&branch=main&benchmark=CORRECTNESS&commit=$hash"
#cor="http://ctrl.pash.ndr.md/job=issue&branch=main&benchmark=CORRECTNESS&commit=$hash"
# issue the correctness tests
curl -s "$cor"
#curl -s "$cor"
# issue the performance tests
curl -s "$perf"
4 changes: 2 additions & 2 deletions .github/workflows/futureci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pash-future-CI-issue
name: Tight-Loop Test
on:
# Run the for-loop tests when pushing to future or when creating a new PR
push:
Expand All @@ -18,7 +18,7 @@ on:
- evaluation/**
- annotations/**
jobs:
future-ci:
tight-loop:
runs-on: ubuntu-latest
steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pash-Correctness-Tests
name: Tests
on:
pull_request_target:
types: [assigned, opened, synchronize, reopened, ready_for_review]
Expand Down
13 changes: 3 additions & 10 deletions .github/workflows/posix.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
name: Posix-CI
name: Posix Correctness
on:
push:
branches:
- main
paths:
- compiler/**
- runtime/**
- evaluation/**
- annotations/**
pull_request_target:
types: [assigned, opened, synchronize, reopened, ready_for_review]
# the paths that trigger the ci
paths:
- compiler/**
- runtime/**
Expand Down Expand Up @@ -37,7 +30,7 @@ jobs:
# poll until we get the results
while true; do
echo "Sleeping"
sleep 30;
sleep 360;
# fetch some of the latest results in case some other actions happened
data=$(curl -s "ctrl.pash.ndr.md/job=fetch_runs&count=50");
results=$(echo $data | jq '.rows | .[] | select(.commit=='\"$commit\"')')
Expand Down

0 comments on commit 92e5232

Please sign in to comment.