Skip to content

Commit

Permalink
ci(all-actions): disable actions that arent currently working or rele…
Browse files Browse the repository at this point in the history
…vant
  • Loading branch information
tsandrini committed Feb 10, 2024
1 parent 908d37b commit fdfe92b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ on:

jobs:
check:
if: false # TODO insufficient CI disk space to run the job unfortunately
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix flake check --no-build --impure --show-trace --accept-flake-config
- run: nix flake check --impure --show-trace --accept-flake-config
- name: Check Nix flake Nixpkgs inputs
uses: DeterminateSystems/flake-checker-action@main
4 changes: 3 additions & 1 deletion .github/workflows/flakehub.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: "FlakeHub"

on:
push:
branches:
- "null"
- "main"
jobs:
flakehub-publish:
if: false # TODO flakehub push fails due to impurities, resolve this
runs-on: "ubuntu-latest"
permissions:
id-token: "write"
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["null"] # disable for now
branches: ["main"] # disable for now

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -23,14 +23,12 @@ concurrency:

jobs:
build-and-deploy:
if: false # TODO docs derivation currently not maintained
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Complete nix setup
uses: DeterminateSystems/nix-installer-action@main
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main

- name: Build docs using Nix
run: nix build .#docs
Expand Down

0 comments on commit fdfe92b

Please sign in to comment.