Skip to content

Commit

Permalink
chore(deps): update flake.lock (#10309)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Phillip Cloud <[email protected]>
  • Loading branch information
3 people authored Oct 14, 2024
1 parent ae30920 commit c55358f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docs-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ jobs:
key: docs-${{ github.event.pull_request.base.sha }}
path: docs/**/.jupyter_cache

- name: run quarto check
run: nix develop '.#ibis311' --ignore-environment -c quarto check

- name: build docs
run: nix develop '.#ibis311' --ignore-environment --keep HOME -c just docs-build-all

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ibis-docs-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ jobs:
key: docs-${{ github.event.before }}
path: docs/**/.jupyter_cache

- name: run quarto check
run: nix develop '.#ibis311' --ignore-environment -c quarto check

- name: build api docs
run: nix develop '.#ibis311' --ignore-environment -c just docs-apigen --verbose

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ibis-docs-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
key: docs-${{ github.event.pull_request.base.sha }}
path: docs/**/.jupyter_cache

- name: run quarto check
run: nix develop '.#ibis311' --ignore-environment -c quarto check

- name: generate api docs
run: nix develop '.#ibis311' --ignore-environment -c just docs-apigen --verbose

Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions nix/quarto/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv
, lib
, esbuild
, deno
, deno_1
, fetchurl
, dart-sass
, makeWrapper
Expand All @@ -17,15 +17,15 @@ let
"aarch64-darwin" = "macos";
};
shas = {
"x86_64-linux" = "sha256-qSQc8Qw2ah0Kbrcb0kNuFTSQB3d7dnVPRRViA7//mgE=";
"aarch64-linux" = "sha256-PZfVCZf6XOUMaMOmIyBe1CrPTKQv53jf2RzunZN6RNk=";
"aarch64-darwin" = "sha256-LCROmrVuYBI4FE1K+c/mo8S7YEJ02puqlSHLcuRLEXc=";
"x86_64-linux" = "sha256-4PgvIPExU6FTaGB5gOSt/InJ9wftVas5OSlvtbW4Rm4=";
"aarch64-linux" = "sha256-7hrySIJREoVuqPQfLYxR0cqT82oocYgB1Gbi4Rbh3ns=";
"aarch64-darwin" = "sha256-BcliqrsJQrP2xjTMv+jqQziQTD7nQap4IAIp2R8ZVCM=";
};
inherit (stdenv.hostPlatform) system;
in
stdenv.mkDerivation rec {
pname = "quarto";
version = "1.6.15";
version = "1.6.25";
src = fetchurl {
url = "https://github.com/quarto-dev/quarto-cli/releases/download/v${version}/quarto-${version}-${platforms.${system}}.tar.gz";
sha256 = shas.${system};
Expand All @@ -45,10 +45,10 @@ stdenv.mkDerivation rec {
in
''
wrapProgram $out/bin/quarto \
--prefix QUARTO_ESBUILD : ${esbuild}/bin/esbuild \
--prefix QUARTO_DENO : ${deno}/bin/deno \
--prefix QUARTO_R : ${rEnv}/bin/R \
--prefix QUARTO_DART_SASS : ${dart-sass}/bin/dart-sass
--prefix QUARTO_ESBUILD : ${lib.getExe esbuild} \
--prefix QUARTO_DENO : ${lib.getExe deno_1} \
--prefix QUARTO_R : ${lib.getExe' rEnv "R"} \
--prefix QUARTO_DART_SASS : ${lib.getExe dart-sass}
'';

installPhase = ''
Expand Down

0 comments on commit c55358f

Please sign in to comment.