Skip to content

Commit

Permalink
Merge pull request #147 from coq-community/v8.20+nix
Browse files Browse the repository at this point in the history
reactivate Nix CI for 8.20
  • Loading branch information
palmskog authored Jun 29, 2024
2 parents 251b7fa + 50044b0 commit 528ae4f
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
47 changes: 47 additions & 0 deletions .github/workflows/nix-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This file was generated from `meta.yml`, please do not edit manually.
# Follow the instructions on https://github.com/coq-community/templates to regenerate.
name: Nix CI

on:
push:
branches:
- v8.20
pull_request:
paths:
- .github/workflows/**
pull_request_target:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
overrides:
- 'coq = "8.20"'
fail-fast: false
steps:
- name: Determine which commit to test
run: |
if [[ ${{ github.event_name }} =~ "pull_request" ]]; then
merge_commit=$(git ls-remote ${{ github.event.repository.html_url }} refs/pull/${{ github.event.number }}/merge | cut -f1)
if [ -z "$merge_commit" ]; then
echo "tested_commit=${{ github.event.pull_request.head.sha }}" >> $GITHUB_ENV
else
echo "tested_commit=$merge_commit" >> $GITHUB_ENV
fi
else
echo "tested_commit=${{ github.sha }}" >> $GITHUB_ENV
fi
- uses: cachix/install-nix-action@v20
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
- uses: cachix/cachix-action@v12
with:
name: coq-community
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
extraPullNames: coq, math-comp
- uses: actions/checkout@v3
with:
ref: ${{ env.tested_commit }}
- run: >
nix-build https://github.com/coq-community/coq-nix-toolbox/archive/master.tar.gz --argstr job aac-tactics --arg override '{ ${{ matrix.overrides }}; aac-tactics = builtins.filterSource (path: _: baseNameOf path != ".git") ./.; }'
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Follow the instructions on https://github.com/coq-community/templates to regener
# AAC Tactics

[![Docker CI][docker-action-shield]][docker-action-link]
[![Nix CI][nix-action-shield]][nix-action-link]
[![Contributing][contributing-shield]][contributing-link]
[![Code of Conduct][conduct-shield]][conduct-link]
[![Zulip][zulip-shield]][zulip-link]
Expand All @@ -14,6 +15,9 @@ Follow the instructions on https://github.com/coq-community/templates to regener
[docker-action-shield]: https://github.com/coq-community/aac-tactics/actions/workflows/docker-action.yml/badge.svg?branch=v8.20
[docker-action-link]: https://github.com/coq-community/aac-tactics/actions/workflows/docker-action.yml

[nix-action-shield]: https://github.com/coq-community/aac-tactics/actions/workflows/nix-action.yml/badge.svg?branch=v8.20
[nix-action-link]: https://github.com/coq-community/aac-tactics/actions/workflows/nix-action.yml

[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
[contributing-link]: https://github.com/coq-community/manifesto/blob/master/CONTRIBUTING.md

Expand Down
3 changes: 2 additions & 1 deletion meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ shortname: aac-tactics
organization: coq-community
community: true
action: true
nix: true
plugin: true
doi: 10.1007/978-3-642-25379-9_14
branch: 'v8.20'
Expand Down Expand Up @@ -56,7 +57,7 @@ supported_ocaml_versions:
opam: '{>= "4.09.0"}'

tested_coq_nix_versions:
- coq_version: 'v8.20'
- coq_version: '8.20'

tested_coq_opam_versions:
- version: '8.20'
Expand Down

0 comments on commit 528ae4f

Please sign in to comment.