f31e580e52
* Clean up workflows * Rename workflow files * Temporarily enable workflows from PR * Add nixpkgs channel to NIX_PATH * Fix typo * Fix index names for warmup * Build verbosely * Fix index names again * Re-add jq * Revert "Temporarily enable workflows from PR" This reverts commit dd040e94645d9e61b80505471f57b1c0e35b1210.
64 lines
1.4 KiB
YAML
64 lines
1.4 KiB
YAML
name: "Nixpkgs: Hourly import to Elasticsearch"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
jobs:
|
|
|
|
import-nixpkgs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
channel:
|
|
- unstable
|
|
- 21.11
|
|
- 21.05
|
|
- 20.09
|
|
|
|
env:
|
|
RUST_LOG: debug
|
|
FI_ES_EXISTS_STRATEGY: abort
|
|
FI_ES_URL: ${{ secrets.ELASTICSEARCH_URL }}
|
|
|
|
steps:
|
|
|
|
- name: Checking out the repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Installing Nix
|
|
uses: cachix/install-nix-action@v16
|
|
with:
|
|
nix_path: nixpkgs=channel:nixpkgs-unstable
|
|
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: nixos-search
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
|
|
- name: Installing jq
|
|
run: |
|
|
nix-env -f '<nixpkgs>' -iA jq
|
|
|
|
- name: Building flake-info
|
|
run: |
|
|
nix -vL build .#flake-info
|
|
|
|
- name: Import ${{ matrix.channel }} channel
|
|
run: |
|
|
./result/bin/flake-info --push --elastic-schema-version=$(< VERSION) nixpkgs ${{ matrix.channel }}
|
|
if: github.repository_owner == 'NixOS'
|
|
|
|
- name: Warmup ${{ matrix.channel }} channel
|
|
run: |
|
|
for (( i = 0; i < 3; i++ )) do
|
|
curl -sS ${{ secrets.ELASTICSEARCH_URL }}/latest-$(< VERSION)-nixos-${{ matrix.channel }}/_search | jq -c '.took // .'
|
|
done
|
|
if: github.repository_owner == 'NixOS'
|