Skip to content
Snippets Groups Projects
Select Git revision
  • c4ec53cac4b8f45a79d91795d42adc167fb335ec
  • master default protected
  • gh-pages
  • dependabot/npm_and_yarn/nock-14.0.6
  • dependabot/npm_and_yarn/react-19.1.0
  • dependabot/npm_and_yarn/react-dom-19.1.0
  • server-2025-02-01-6100669a
  • server-2024-11-01-87cba042
  • server-2024-10-01-6875b7c8
  • dependabot/npm_and_yarn/path-to-regexp-8.2.0
  • server-2024-09-01-3d52575c
  • daily-tests-gha2
  • daily-tests-gha
  • server-2023-12-01-92d8fb8e
  • server-2023-11-01-a80c93fd
  • server-2023-10-01-31096085
  • coc-v2
  • server-2023-09-01-8edc3810
  • server-2023-08-01-75858a03
  • server-2023-07-01-02183d8d
  • test-9317
  • server-2025-07-01
  • 5.0.2
  • 5.0.1
  • 5.0.0
  • server-2025-06-01
  • server-2025-05-01
  • server-2025-04-03
  • server-2025-03-02
  • server-2025-03-01
  • server-2025-02-02
  • server-2025-01-01
  • server-2024-12-01
  • server-2024-11-02
  • 4.1.0
  • server-2024-09-25
  • server-2024-09-02
  • server-2024-08-01
  • server-2024-07-01
  • 4.0.0
  • server-2024-06-01
41 results

cypress.config.js

Blame
  • Earthfile 1.48 KiB
    VERSION 0.7
    
    # images builds all container images in the Repository
    images:
        ARG CONTAINER_REGISTRY=quay.io/shivering-isles
        BUILD +images-earthly --CONTAINER_REGISTRY=${CONTAINER_REGISTRY}
    
    images-src:
        FROM quay.io/fedora/fedora:39
        COPY images/ ./images
    
    images-earthly:
        FROM +images-src
        ARG CONTAINER_REGISTRY=quay.io/shivering-isles
        FOR dir IN $(find ./images -type d -execdir test -f {}/Earthfile -a \! -e {}/.skip-earthly \; -print)
            BUILD "${dir}+container" --registry="$CONTAINER_REGISTRY/$(basename ${dir})"
        END
    
    # changelog generates a local RELEASENOTES.md file using git-chglog
    changelog:
      FROM quay.io/git-chglog/git-chglog:0.15.4
      COPY . /src
      WORKDIR /src
      RUN git-chglog --template .chglog/unreleased.tpl.md --next-tag "v$(date +%y.%m)" --output RELEASENOTES.md
      SAVE ARTIFACT RELEASENOTES.md AS LOCAL RELEASENOTES.md
    
    # merge allows to merge branches in the origin remote, this helps to keep everything signed
    merge:
        LOCALLY
        ARG --required branch
        RUN git fetch
        RUN git merge --no-ff origin/${branch} --no-edit
        RUN git push
        RUN git push origin --delete ${branch}
    
    # rotate will rotate encryption keys in sops-encrypted files
    rotate:
        LOCALLY
        RUN grep -Ril "sops:" ./**/*.yaml | xargs sops -r -i
    
    # enable-autoupdates enables the fedora autoupdating form the system-upgrades namespace
    enable-autoupdates:
        LOCALLY
        ARG --required node
        RUN kubectl label node "${node}" upgrade.shivering-isles.com/fedora-autoupdate=true