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

feature/drop unstable #280

Merged
merged 2 commits into from
Mar 25, 2024
Merged
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
18 changes: 11 additions & 7 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{ pkgs ? import <nixpkgs> { }, unstable ? import <nixpkgs-unstable> { } }:
{ pkgs ? import <nixpkgs> { }
, unstable ? import <nixpkgs-unstable> {
config.allowUnfree = true;
}
}:

pkgs.mkShell {
NIX_SHELL = "collie-cli";
Expand All @@ -7,8 +11,8 @@ pkgs.mkShell {
'';

buildInputs = [
unstable.deno
pkgs.deno

# used for build scripts
pkgs.unzip
pkgs.gnused
Expand All @@ -19,10 +23,10 @@ pkgs.mkShell {
pkgs.google-cloud-sdk

# terraform
unstable.terraform
unstable.terragrunt
unstable.tflint
unstable.terraform-docs
pkgs.terraform
pkgs.terragrunt
pkgs.tflint
pkgs.terraform-docs

# for collie foundation docs
pkgs.nodejs
Expand Down
4 changes: 2 additions & 2 deletions src/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// ATTENTION: DO NOT COMMIT CHANGES TO THIS VERSION STRING, it's replaced in build.sh when performing a release.
// This should always have the value "v0.22.0"
export const VERSION = "vDEVELOPMENT".substring(1);
export const VERSION = "v0.24.0-2-g3f740f9".substring(1);

JohannesRudolph marked this conversation as resolved.
Show resolved Hide resolved
/**
* The flags we want collie to be invoked with.
Expand All @@ -11,7 +11,7 @@ export const VERSION = "vDEVELOPMENT".substring(1);
* see https://deno.com/blog/v1.21#deno-check-and-the-path-to-not-type-checking-by-default
*/
export const FLAGS =
`--unstable --allow-read --allow-write --allow-env --allow-run --allow-net --no-check`;
`--allow-read --allow-write --allow-env --allow-run --allow-net --no-check`;
export const GITHUB_REPO = "meshcloud/collie-cli";

// Use the CLI Command when mentioning it as a command to run, e.g.: Please run "${CLI} -h" to see more.
Expand Down
Loading