Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: replace old 23.11 channel URLs after first 24.05 release is out #1063

Open
wants to merge 1 commit into
base: fc-24.05-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# --arg docObjectsInventory https://hydra.flyingcircus.io/job/flyingcircus/doc-test/platformDoc/latest/download-by-type/file/inventory

{
pkgs ? import (fetchTarball https://hydra.flyingcircus.io/build/402189/download/1/nixexprs.tar.xz) {}
pkgs ? import (fetchTarball "https://hydra.flyingcircus.io/build/457353/download/1/nixexprs.tar.xz") {}
, branch ? "24.05"
, updated ? "1970-01-01 01:00"
, docObjectsInventory ? null # path to objects.inv generated by flyingcircusio/doc
Expand Down
4 changes: 2 additions & 2 deletions doc/src/devhost.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ A development environment (e.g. named ``dev``) would typically look like this:
method = fc-nixos-dev-vm
# The release has the format fcrs://channel/release
# release can be empty, than the latest release for the channel is used.
release = fcrs://fc-23.11-production/2024_001
release = fcrs://fc-24.05-production/2024_021
host = dev.example.com

channel = https://hydra.flyingcircus.io/build/116563/download/1/nixexprs.tar.xz
channel = https://hydra.flyingcircus.io/build/457353/download/1/nixexprs.tar.xz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not fully certain about this here: What is the role of the channel specification now that we already have a release = fcrs://fc-24.05-production/2024_021 that points to metadate holding the same channel information?



[host:myvm]
Expand Down
2 changes: 1 addition & 1 deletion doc/src/user_profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Create a file like {file}`myproject_env.nix` which specifies the packages to be
let
# Imports. Which package sources should be used?
# Use a pinned platform version
# pkgs = import (fetchTarball https://hydra.flyingcircus.io/build/330577/download/1/nixexprs.tar.xz) {};
# pkgs = import (fetchTarball "https://hydra.flyingcircus.io/build/457353/download/1/nixexprs.tar.xz") {};
# ...or just use the current version of the platform
pkgs = import <nixpkgs> {};
in
Expand Down
Loading