-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from sertel/main
Nix flake suppport and CI
- Loading branch information
Showing
14 changed files
with
842 additions
and
66 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Flake build | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: cachix/install-nix-action@v25 | ||
with: | ||
github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: nix build | ||
- run: nix flake check |
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,281 @@ | ||
jobs: | ||
coq: | ||
needs: [] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Determine which commit to initially checkout | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"target_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n echo \"target_commit=${{ github.event.pull_request.head.sha\ | ||
\ }}\" >> $GITHUB_ENV\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.target_commit }} | ||
- name: Determine which commit to test | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ | ||
\ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ | ||
\ | cut -f1)\n mergeable=$(git merge --no-commit --no-ff ${{ github.event.pull_request.base.sha\ | ||
\ }} > /dev/null 2>&1; echo $?; git merge --abort > /dev/null 2>&1 || true)\n\ | ||
\ if [ -z \"$merge_commit\" -o \"x$mergeable\" != \"x0\" ]; then\n echo\ | ||
\ \"tested_commit=${{ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n\ | ||
\ else\n echo \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.tested_commit }} | ||
- name: Cachix install | ||
uses: cachix/install-nix-action@v20 | ||
with: | ||
nix_path: nixpkgs=channel:nixpkgs-unstable | ||
- name: Cachix setup coq | ||
uses: cachix/cachix-action@v12 | ||
with: | ||
extraPullNames: coq-community, math-comp | ||
name: coq | ||
- id: stepCheck | ||
name: Checking presence of CI target coq | ||
run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ | ||
\ bundle \"8.18\" --argstr job \"coq\" \\\n --dry-run 2>&1 > /dev/null)\n\ | ||
echo $nb_dry_run\necho status=$(echo $nb_dry_run | grep \"built:\" | sed \"\ | ||
s/.*/built/\") >> $GITHUB_OUTPUT\n" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: Building/fetching current CI target | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "coq" | ||
mathcomp: | ||
needs: | ||
- coq | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Determine which commit to initially checkout | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"target_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n echo \"target_commit=${{ github.event.pull_request.head.sha\ | ||
\ }}\" >> $GITHUB_ENV\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.target_commit }} | ||
- name: Determine which commit to test | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ | ||
\ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ | ||
\ | cut -f1)\n mergeable=$(git merge --no-commit --no-ff ${{ github.event.pull_request.base.sha\ | ||
\ }} > /dev/null 2>&1; echo $?; git merge --abort > /dev/null 2>&1 || true)\n\ | ||
\ if [ -z \"$merge_commit\" -o \"x$mergeable\" != \"x0\" ]; then\n echo\ | ||
\ \"tested_commit=${{ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n\ | ||
\ else\n echo \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.tested_commit }} | ||
- name: Cachix install | ||
uses: cachix/install-nix-action@v20 | ||
with: | ||
nix_path: nixpkgs=channel:nixpkgs-unstable | ||
- name: Cachix setup coq | ||
uses: cachix/cachix-action@v12 | ||
with: | ||
extraPullNames: coq-community, math-comp | ||
name: coq | ||
- id: stepCheck | ||
name: Checking presence of CI target mathcomp | ||
run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ | ||
\ bundle \"8.18\" --argstr job \"mathcomp\" \\\n --dry-run 2>&1 > /dev/null)\n\ | ||
echo $nb_dry_run\necho status=$(echo $nb_dry_run | grep \"built:\" | sed \"\ | ||
s/.*/built/\") >> $GITHUB_OUTPUT\n" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: coq' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "coq" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-ssreflect' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-ssreflect" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-fingroup' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-fingroup" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-algebra' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-algebra" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-solvable' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-solvable" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-field' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-field" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-character' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-character" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: hierarchy-builder' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "hierarchy-builder" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: Building/fetching current CI target | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp" | ||
mathcomp-analysis: | ||
needs: | ||
- coq | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Determine which commit to initially checkout | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"target_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n echo \"target_commit=${{ github.event.pull_request.head.sha\ | ||
\ }}\" >> $GITHUB_ENV\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.target_commit }} | ||
- name: Determine which commit to test | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ | ||
\ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ | ||
\ | cut -f1)\n mergeable=$(git merge --no-commit --no-ff ${{ github.event.pull_request.base.sha\ | ||
\ }} > /dev/null 2>&1; echo $?; git merge --abort > /dev/null 2>&1 || true)\n\ | ||
\ if [ -z \"$merge_commit\" -o \"x$mergeable\" != \"x0\" ]; then\n echo\ | ||
\ \"tested_commit=${{ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n\ | ||
\ else\n echo \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.tested_commit }} | ||
- name: Cachix install | ||
uses: cachix/install-nix-action@v20 | ||
with: | ||
nix_path: nixpkgs=channel:nixpkgs-unstable | ||
- name: Cachix setup coq | ||
uses: cachix/cachix-action@v12 | ||
with: | ||
extraPullNames: coq-community, math-comp | ||
name: coq | ||
- id: stepCheck | ||
name: Checking presence of CI target mathcomp-analysis | ||
run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ | ||
\ bundle \"8.18\" --argstr job \"mathcomp-analysis\" \\\n --dry-run 2>&1\ | ||
\ > /dev/null)\necho $nb_dry_run\necho status=$(echo $nb_dry_run | grep \"\ | ||
built:\" | sed \"s/.*/built/\") >> $GITHUB_OUTPUT\n" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: coq' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "coq" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-classical' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-classical" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-field' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-field" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-bigenough' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-bigenough" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: hierarchy-builder' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "hierarchy-builder" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: Building/fetching current CI target | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-analysis" | ||
ssprove: | ||
needs: | ||
- coq | ||
- mathcomp-analysis | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Determine which commit to initially checkout | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"target_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n echo \"target_commit=${{ github.event.pull_request.head.sha\ | ||
\ }}\" >> $GITHUB_ENV\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.target_commit }} | ||
- name: Determine which commit to test | ||
run: "if [ ${{ github.event_name }} = \"push\" ]; then\n echo \"tested_commit=${{\ | ||
\ github.sha }}\" >> $GITHUB_ENV\nelse\n merge_commit=$(git ls-remote ${{\ | ||
\ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge\ | ||
\ | cut -f1)\n mergeable=$(git merge --no-commit --no-ff ${{ github.event.pull_request.base.sha\ | ||
\ }} > /dev/null 2>&1; echo $?; git merge --abort > /dev/null 2>&1 || true)\n\ | ||
\ if [ -z \"$merge_commit\" -o \"x$mergeable\" != \"x0\" ]; then\n echo\ | ||
\ \"tested_commit=${{ github.event.pull_request.head.sha }}\" >> $GITHUB_ENV\n\ | ||
\ else\n echo \"tested_commit=$merge_commit\" >> $GITHUB_ENV\n fi\nfi\n" | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.tested_commit }} | ||
- name: Cachix install | ||
uses: cachix/install-nix-action@v20 | ||
with: | ||
nix_path: nixpkgs=channel:nixpkgs-unstable | ||
- name: Cachix setup coq | ||
uses: cachix/cachix-action@v12 | ||
with: | ||
extraPullNames: coq-community, math-comp | ||
name: coq | ||
- id: stepCheck | ||
name: Checking presence of CI target ssprove | ||
run: "nb_dry_run=$(NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link \\\n --argstr\ | ||
\ bundle \"8.18\" --argstr job \"ssprove\" \\\n --dry-run 2>&1 > /dev/null)\n\ | ||
echo $nb_dry_run\necho status=$(echo $nb_dry_run | grep \"built:\" | sed \"\ | ||
s/.*/built/\") >> $GITHUB_OUTPUT\n" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: coq' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "coq" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: equations' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "equations" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-ssreflect' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-ssreflect" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: mathcomp-analysis' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "mathcomp-analysis" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: extructures' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "extructures" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: 'Building/fetching previous CI target: deriving' | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "deriving" | ||
- if: steps.stepCheck.outputs.status == 'built' | ||
name: Building/fetching current CI target | ||
run: NIXPKGS_ALLOW_UNFREE=1 nix-build --no-out-link --argstr bundle "8.18" --argstr | ||
job "ssprove" | ||
name: Nix CI for bundle 8.18 | ||
'on': | ||
pull_request: | ||
paths: | ||
- .github/workflows/nix-action-8.18.yml | ||
pull_request_target: | ||
paths-ignore: | ||
- .github/workflows/nix-action-8.18.yml | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: |
Oops, something went wrong.