Compare commits
1 commit
12e7174057
...
e5c37d1c8b
Author | SHA1 | Date | |
---|---|---|---|
Christoph Heiss | e5c37d1c8b |
|
@ -12,18 +12,14 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-flake-info:
|
build-flake-info:
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-unstable
|
||||||
steps:
|
steps:
|
||||||
- name: Checking out the repository
|
- name: Checking out the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup
|
- name: Enable flakes
|
||||||
uses: ./.github/actions/common-setup
|
run: |
|
||||||
with:
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Building flake-info
|
- name: Building flake-info
|
||||||
run: |
|
run: |
|
|
@ -8,24 +8,19 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
automatic-custom-flakes-check:
|
automatic-custom-flakes-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-unstable
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUST_LOG: debug
|
RUST_LOG: debug
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checking out the repository
|
- name: Checking out the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup
|
- name: Enable flakes
|
||||||
uses: ./.github/actions/common-setup
|
run: |
|
||||||
with:
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
|
|
||||||
- name: Try importing all custom flakes
|
- name: Try importing all custom flakes
|
||||||
run: |
|
run: |
|
30
.forgejo/workflows/frontend.yml
Normal file
30
.forgejo/workflows/frontend.yml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
name: "Frontend: Build & Deploy to Netlify"
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "flake.nix"
|
||||||
|
- "flake.lock"
|
||||||
|
- "frontend/**"
|
||||||
|
- "VERSION"
|
||||||
|
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-deploy:
|
||||||
|
runs-on: nixos-unstable
|
||||||
|
steps:
|
||||||
|
- name: Checking out the repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Enable flakes
|
||||||
|
run: |
|
||||||
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
|
|
||||||
|
- name: Building search.nixos.org
|
||||||
|
run: |
|
||||||
|
nix -vL build .#frontend
|
||||||
|
mkdir ./dist
|
||||||
|
cp -RL ./result/* ./dist/
|
|
@ -10,10 +10,8 @@ permissions:
|
||||||
issues: write
|
issues: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
nixos-channels:
|
nixos-channels:
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-unstable
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.nixos-channels.outputs.matrix }}
|
matrix: ${{ steps.nixos-channels.outputs.matrix }}
|
||||||
|
|
||||||
|
@ -21,11 +19,9 @@ jobs:
|
||||||
- name: Checking out the repository
|
- name: Checking out the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup
|
- name: Enable flakes
|
||||||
uses: ./.github/actions/common-setup
|
run: |
|
||||||
with:
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
|
|
||||||
- name: NixOS Channels
|
- name: NixOS Channels
|
||||||
id: nixos-channels
|
id: nixos-channels
|
||||||
|
@ -37,12 +33,10 @@ jobs:
|
||||||
|
|
||||||
import-nixpkgs:
|
import-nixpkgs:
|
||||||
needs: nixos-channels
|
needs: nixos-channels
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-unstable
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix: ${{ fromJSON(needs.nixos-channels.outputs.matrix) }}
|
matrix: ${{ fromJSON(needs.nixos-channels.outputs.matrix) }}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUST_LOG: debug
|
RUST_LOG: debug
|
||||||
FI_ES_EXISTS_STRATEGY: abort
|
FI_ES_EXISTS_STRATEGY: abort
|
||||||
|
@ -52,70 +46,52 @@ jobs:
|
||||||
- name: Checking out the repository
|
- name: Checking out the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup
|
- name: Enable flakes
|
||||||
uses: ./.github/actions/common-setup
|
run: |
|
||||||
with:
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
|
|
||||||
- name: Import ${{ matrix.channel }} channel
|
- name: Import ${{ matrix.channel }} channel
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
nix run --accept-flake-config .#flake-info -- --push --elastic-schema-version=$(< VERSION) nixpkgs ${{ matrix.channel }}
|
nix run --accept-flake-config .#flake-info -- --push --elastic-schema-version=$(< VERSION) nixpkgs ${{ matrix.channel }}
|
||||||
if: github.repository_owner == 'NixOS'
|
if: false
|
||||||
|
|
||||||
- name: Warmup ${{ matrix.channel }} channel
|
- name: Warmup ${{ matrix.channel }} channel
|
||||||
run: |
|
run: |
|
||||||
for (( i = 0; i < 3; i++ )) do
|
for (( i = 0; i < 3; i++ )) do
|
||||||
curl -sS ${{ secrets.ELASTICSEARCH_URL2 }}/latest-$(< VERSION)-nixos-${{ matrix.channel }}/_search | jq -c '.took // .'
|
curl -sS ${{ secrets.ELASTICSEARCH_URL2 }}/latest-$(< VERSION)-nixos-${{ matrix.channel }}/_search | jq -c '.took // .'
|
||||||
done
|
done
|
||||||
if: github.repository_owner == 'NixOS'
|
if: false
|
||||||
|
|
||||||
- name: Create issue if failed
|
|
||||||
if: failure()
|
|
||||||
uses: JasonEtco/create-an-issue@v2
|
|
||||||
with:
|
|
||||||
filename: .github/failing-import-issue.md
|
|
||||||
search_existing: open
|
|
||||||
update_existing: false
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CHANNEL: ${{ matrix.channel }}
|
|
||||||
|
|
||||||
import-flakes:
|
import-flakes:
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-unstable
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
group:
|
group:
|
||||||
- "manual"
|
- manual
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUST_LOG: debug
|
RUST_LOG: debug
|
||||||
FI_ES_EXISTS_STRATEGY: recreate
|
FI_ES_EXISTS_STRATEGY: recreate
|
||||||
FI_ES_URL: ${{ secrets.ELASTICSEARCH_URL2 }}
|
FI_ES_URL: ${{ secrets.ELASTICSEARCH_URL2 }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checking out the repository
|
- name: Checking out the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup
|
- name: Enable flakes
|
||||||
uses: ./.github/actions/common-setup
|
run: |
|
||||||
with:
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
|
|
||||||
- name: Import ${{ matrix.group }} group
|
- name: Import ${{ matrix.group }} group
|
||||||
run: |
|
run: |
|
||||||
nix run --accept-flake-config .#flake-info -- --push --elastic-schema-version=$(< ./VERSION) group ./flakes/${{ matrix.group }}.toml ${{ matrix.group }}
|
nix run --accept-flake-config .#flake-info -- --push --elastic-schema-version=$(< ./VERSION) group ./flakes/${{ matrix.group }}.toml ${{ matrix.group }}
|
||||||
if: github.repository_owner == 'NixOS'
|
if: false
|
||||||
|
|
||||||
- name: Warmup ${{ matrix.group }} group
|
- name: Warmup ${{ matrix.group }} group
|
||||||
run: |
|
run: |
|
||||||
for (( i = 0; i < 3; i++ )) do
|
for (( i = 0; i < 3; i++ )) do
|
||||||
curl -sS ${{ secrets.ELASTICSEARCH_URL2 }}/latest-$(< VERSION)-group-${{ matrix.group }}/_search | jq -c '.took // .'
|
curl -sS ${{ secrets.ELASTICSEARCH_URL2 }}/latest-$(< VERSION)-group-${{ matrix.group }}/_search | jq -c '.took // .'
|
||||||
done
|
done
|
||||||
if: github.repository_owner == 'NixOS'
|
if: false
|
|
@ -1,4 +1,5 @@
|
||||||
name: update-flake-lock
|
name: "Update flake.lock"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # allows manual triggering
|
workflow_dispatch: # allows manual triggering
|
||||||
schedule:
|
schedule:
|
||||||
|
@ -6,14 +7,15 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lockfile:
|
lockfile:
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-unstable
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Install Nix
|
|
||||||
uses: cachix/install-nix-action@V27
|
- name: Enable flakes
|
||||||
with:
|
run: |
|
||||||
extra_nix_config: |
|
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
|
||||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Update flake.lock
|
- name: Update flake.lock
|
||||||
uses: DeterminateSystems/update-flake-lock@v22
|
uses: DeterminateSystems/update-flake-lock@v22
|
||||||
|
if: false
|
23
.github/actions/common-setup/action.yml
vendored
23
.github/actions/common-setup/action.yml
vendored
|
@ -1,23 +0,0 @@
|
||||||
name: Setup Environment
|
|
||||||
inputs:
|
|
||||||
GITHUB_TOKEN:
|
|
||||||
required: true
|
|
||||||
description: "GitHub access token used to prevent GitHub's rate limit for unauthenticated requests"
|
|
||||||
CACHIX_SIGNING_KEY: # determines what node version to install
|
|
||||||
required: true
|
|
||||||
description: 'Cachix Signing Key'
|
|
||||||
runs:
|
|
||||||
using: "composite"
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Installing Nix
|
|
||||||
uses: cachix/install-nix-action@v20
|
|
||||||
with:
|
|
||||||
nix_path: nixpkgs=channel:nixpkgs-unstable
|
|
||||||
extra_nix_config: |
|
|
||||||
access-tokens = github.com=${{ inputs.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- uses: cachix/cachix-action@v12
|
|
||||||
with:
|
|
||||||
name: nixos-search
|
|
||||||
signingKey: '${{ inputs.CACHIX_SIGNING_KEY }}'
|
|
51
.github/workflows/frontend.yml
vendored
51
.github/workflows/frontend.yml
vendored
|
@ -1,51 +0,0 @@
|
||||||
name: "Frontend: Build & Deploy to Netlify"
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "flake.nix"
|
|
||||||
- "flake.lock"
|
|
||||||
- "frontend/**"
|
|
||||||
- "VERSION"
|
|
||||||
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checking out the repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup
|
|
||||||
uses: ./.github/actions/common-setup
|
|
||||||
with:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Building search.nixos.org
|
|
||||||
run: |
|
|
||||||
nix -vL build .#frontend
|
|
||||||
mkdir ./dist
|
|
||||||
cp -RL ./result/* ./dist/
|
|
||||||
|
|
||||||
- name: Deploy to Netlify
|
|
||||||
uses: nwtgck/actions-netlify@v3.0
|
|
||||||
env:
|
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
||||||
with:
|
|
||||||
production-branch: 'main'
|
|
||||||
production-deploy: ${{ github.event_name == 'push' }}
|
|
||||||
publish-dir: './dist'
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
deploy-message: 'Deploy from GitHub Actions'
|
|
||||||
enable-pull-request-comment: true
|
|
||||||
overwrites-pull-request-comment: true
|
|
||||||
enable-commit-comment: false
|
|
||||||
enable-commit-status: true
|
|
||||||
if: github.repository_owner == 'NixOS'
|
|
Loading…
Reference in a new issue