|
45 | 45 | name: Building/fetching current CI target |
46 | 46 | run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
47 | 47 | job "Cheerios" |
| 48 | + ITree: |
| 49 | + needs: |
| 50 | + - coq |
| 51 | + - coq-ext-lib |
| 52 | + - paco |
| 53 | + runs-on: ubuntu-latest |
| 54 | + steps: |
| 55 | + - name: Determine which commit to test |
| 56 | + run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ |
| 57 | + \ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ |
| 58 | + \ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ |
| 59 | + \ | cut -f1)\n if [ -z \"$merge_commit\" ]; then\n echo \"tested_commit=${{\ |
| 60 | + \ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n else\n echo\ |
| 61 | + \ \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" |
| 62 | + - name: Git checkout |
| 63 | + uses: actions/checkout@v2 |
| 64 | + with: |
| 65 | + fetch-depth: 0 |
| 66 | + ref: ${{ env.tested_commit }} |
| 67 | + - name: Cachix install |
| 68 | + uses: cachix/install-nix-action@v16 |
| 69 | + with: |
| 70 | + nix_path: nixpkgs=channel:nixpkgs-unstable |
| 71 | + - name: Cachix setup coq-community |
| 72 | + uses: cachix/cachix-action@v10 |
| 73 | + with: |
| 74 | + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} |
| 75 | + extraPullNames: coq, math-comp |
| 76 | + name: coq-community |
| 77 | + - id: stepCheck |
| 78 | + name: Checking presence of CI target ITree |
| 79 | + run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ |
| 80 | + \ bundle \"8.14\" --argstr job \"ITree\" \\\n --dry-run 2>&1 > /dev/null)\n\ |
| 81 | + echo $nb_dry_run\necho ::set-output name=status::$(echo $nb_dry_run | grep\ |
| 82 | + \ \"built:\" | sed \"s/.*/built/\")\n" |
| 83 | + - if: steps.stepCheck.outputs.status == 'built' |
| 84 | + name: 'Building/fetching previous CI target: coq' |
| 85 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 86 | + job "coq" |
| 87 | + - if: steps.stepCheck.outputs.status == 'built' |
| 88 | + name: 'Building/fetching previous CI target: coq-ext-lib' |
| 89 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 90 | + job "coq-ext-lib" |
| 91 | + - if: steps.stepCheck.outputs.status == 'built' |
| 92 | + name: 'Building/fetching previous CI target: paco' |
| 93 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 94 | + job "paco" |
| 95 | + - if: steps.stepCheck.outputs.status == 'built' |
| 96 | + name: Building/fetching current CI target |
| 97 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 98 | + job "ITree" |
48 | 99 | InfSeqExt: |
49 | 100 | needs: |
50 | 101 | - coq |
@@ -367,6 +418,57 @@ jobs: |
367 | 418 | name: Building/fetching current CI target |
368 | 419 | run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
369 | 420 | job "bignums" |
| 421 | + category-theory: |
| 422 | + needs: |
| 423 | + - coq |
| 424 | + - mathcomp-ssreflect |
| 425 | + - equations |
| 426 | + runs-on: ubuntu-latest |
| 427 | + steps: |
| 428 | + - name: Determine which commit to test |
| 429 | + run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ |
| 430 | + \ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ |
| 431 | + \ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ |
| 432 | + \ | cut -f1)\n if [ -z \"$merge_commit\" ]; then\n echo \"tested_commit=${{\ |
| 433 | + \ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n else\n echo\ |
| 434 | + \ \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" |
| 435 | + - name: Git checkout |
| 436 | + uses: actions/checkout@v2 |
| 437 | + with: |
| 438 | + fetch-depth: 0 |
| 439 | + ref: ${{ env.tested_commit }} |
| 440 | + - name: Cachix install |
| 441 | + uses: cachix/install-nix-action@v16 |
| 442 | + with: |
| 443 | + nix_path: nixpkgs=channel:nixpkgs-unstable |
| 444 | + - name: Cachix setup coq-community |
| 445 | + uses: cachix/cachix-action@v10 |
| 446 | + with: |
| 447 | + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} |
| 448 | + extraPullNames: coq, math-comp |
| 449 | + name: coq-community |
| 450 | + - id: stepCheck |
| 451 | + name: Checking presence of CI target category-theory |
| 452 | + run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ |
| 453 | + \ bundle \"8.14\" --argstr job \"category-theory\" \\\n --dry-run 2>&1 >\ |
| 454 | + \ /dev/null)\necho $nb_dry_run\necho ::set-output name=status::$(echo $nb_dry_run\ |
| 455 | + \ | grep \"built:\" | sed \"s/.*/built/\")\n" |
| 456 | + - if: steps.stepCheck.outputs.status == 'built' |
| 457 | + name: 'Building/fetching previous CI target: coq' |
| 458 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 459 | + job "coq" |
| 460 | + - if: steps.stepCheck.outputs.status == 'built' |
| 461 | + name: 'Building/fetching previous CI target: mathcomp-ssreflect' |
| 462 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 463 | + job "mathcomp-ssreflect" |
| 464 | + - if: steps.stepCheck.outputs.status == 'built' |
| 465 | + name: 'Building/fetching previous CI target: equations' |
| 466 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 467 | + job "equations" |
| 468 | + - if: steps.stepCheck.outputs.status == 'built' |
| 469 | + name: Building/fetching current CI target |
| 470 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 471 | + job "category-theory" |
370 | 472 | ceres: |
371 | 473 | needs: |
372 | 474 | - coq |
@@ -2342,6 +2444,47 @@ jobs: |
2342 | 2444 | name: Building/fetching current CI target |
2343 | 2445 | run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
2344 | 2446 | job "multinomials" |
| 2447 | + paco: |
| 2448 | + needs: |
| 2449 | + - coq |
| 2450 | + runs-on: ubuntu-latest |
| 2451 | + steps: |
| 2452 | + - name: Determine which commit to test |
| 2453 | + run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ |
| 2454 | + \ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ |
| 2455 | + \ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ |
| 2456 | + \ | cut -f1)\n if [ -z \"$merge_commit\" ]; then\n echo \"tested_commit=${{\ |
| 2457 | + \ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n else\n echo\ |
| 2458 | + \ \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" |
| 2459 | + - name: Git checkout |
| 2460 | + uses: actions/checkout@v2 |
| 2461 | + with: |
| 2462 | + fetch-depth: 0 |
| 2463 | + ref: ${{ env.tested_commit }} |
| 2464 | + - name: Cachix install |
| 2465 | + uses: cachix/install-nix-action@v16 |
| 2466 | + with: |
| 2467 | + nix_path: nixpkgs=channel:nixpkgs-unstable |
| 2468 | + - name: Cachix setup coq-community |
| 2469 | + uses: cachix/cachix-action@v10 |
| 2470 | + with: |
| 2471 | + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} |
| 2472 | + extraPullNames: coq, math-comp |
| 2473 | + name: coq-community |
| 2474 | + - id: stepCheck |
| 2475 | + name: Checking presence of CI target paco |
| 2476 | + run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ |
| 2477 | + \ bundle \"8.14\" --argstr job \"paco\" \\\n --dry-run 2>&1 > /dev/null)\n\ |
| 2478 | + echo $nb_dry_run\necho ::set-output name=status::$(echo $nb_dry_run | grep\ |
| 2479 | + \ \"built:\" | sed \"s/.*/built/\")\n" |
| 2480 | + - if: steps.stepCheck.outputs.status == 'built' |
| 2481 | + name: 'Building/fetching previous CI target: coq' |
| 2482 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 2483 | + job "coq" |
| 2484 | + - if: steps.stepCheck.outputs.status == 'built' |
| 2485 | + name: Building/fetching current CI target |
| 2486 | + run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.14" --argstr |
| 2487 | + job "paco" |
2345 | 2488 | paramcoq: |
2346 | 2489 | needs: |
2347 | 2490 | - coq |
|
0 commit comments