updates to conda,gradle,hugo (#24)

This commit is contained in:
Josh Spicer 2022-05-25 19:04:49 -07:00 committed by GitHub
parent eb6ed37deb
commit 7f182aaea2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 20 additions and 11 deletions

View file

@ -24,7 +24,7 @@ jobs:
"git-lfs",
"github-cli",
"go",
"gradle",
"java gradle", # Install 'java', then 'gradle'
"hugo",
"java",
"jekyll",

View file

@ -12,6 +12,7 @@ on:
default: 'ubuntu:focal'
logLevel:
description: 'Log Level (info/debug/trace)'
required: true
default: 'info'
jobs:

View file

@ -24,7 +24,7 @@ jobs:
git-lfs: ./**/git-lfs/**
github-cli: ./**/github-cli/**
go: ./**/go/**
gradle: ./**/gradle/**
'java gradle': ./**/gradle/**
hugo: ./**/hugo/**
java: ./**/java/**
jekyll: ./**/jekyll/**

View file

@ -7,7 +7,7 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/anaconda.md
# Maintainer: The VS Code and Codespaces Teams
#
# Syntax: ./anaconda-debian.sh [Conda version] [CONDA_DIR] [Non-root user] [Add rc files flag]
# Syntax: ./anaconda-debian.sh [Conda version] [Non-root user] [Add rc files flag]
VERSION=${1:-"latest"}
USERNAME=${2:-"automatic"}

View file

@ -7,12 +7,13 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/gradle.md
# Maintainer: The VS Code and Codespaces Teams
#
# Syntax: ./gradle-debian.sh [Gradle version] [SDKMAN_DIR] [non-root user] [Update rc files flag]
# Syntax: ./gradle-debian.sh [Gradle version] [non-root user] [Update rc files flag]
GRADLE_VERSION=${1:-"latest"}
export SDKMAN_DIR=${2:-"/usr/local/sdkman"}
USERNAME=${3:-"automatic"}
UPDATE_RC=${4:-"true"}
USERNAME=${2:-"automatic"}
UPDATE_RC=${3:-"true"}
SDKMAN_DIR=${SDKMAN_DIR:-"/usr/local/sdkman"}
set -e

View file

@ -4,11 +4,17 @@
"options": {
"version": {
"type": "string",
"proposals": ["latest"],
"proposals": [
"latest"
],
"default": "latest",
"description": "Select or enter a version."
}
},
"containerEnv": {
"HUGO_DIR": "/usr/local/hugo",
"PATH": "${HUGO_DIR}/bin:${PATH}"
},
"install": {
"app": "",
"file": "install.sh"

View file

@ -10,10 +10,11 @@
# Syntax: ./hugo-debian.sh [Hugo version] [HUGO_DIR] [Non-root user] [Add rc files flag]
VERSION=${1:-"latest"}
export HUGO_DIR=${2:-"/usr/local/hugo"}
USERNAME=${3:-"automatic"}
UPDATE_RC=${4:-"true"}
HUGO_DIR=${HUGO_DIR:-"/usr/local/hugo"}
set -e
if [ "$(id -u)" -ne 0 ]; then