-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- chore(deps): update actions/download-artifact action to v4 (#19) - feat(Tools): Adds the Subversion client to the Dev Container (#35) - feat(Tools): Adds the MySQL/MariaDB client (#36)
- Loading branch information
Showing
6 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
.devcontainer/local-features/mysql-client/devcontainer-feature.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"Id": "mysql-client", | ||
"name": "Install the MySQL/MariaDB client", | ||
"install": { | ||
"app": "", | ||
"file": "install.sh" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eux | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install the MySQL/MariaDB client. | ||
if [ ! -f /usr/bin/mysql ]; then | ||
echo "Installing MySQL/MariaDB client..." | ||
sudo apt-get update -y --no-install-recommends | ||
sudo apt-get install -y --no-install-recommends default-mysql-client | ||
fi | ||
|
||
echo "Done!" |
8 changes: 8 additions & 0 deletions
8
.devcontainer/local-features/subversion/devcontainer-feature.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"Id": "subversion", | ||
"name": "Install the Subversion CLI", | ||
"install": { | ||
"app": "", | ||
"file": "install.sh" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eux | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install the Subversion CLI. | ||
if [ ! -f /usr/bin/svn ]; then | ||
echo "Installing Subversion CLI..." | ||
sudo apt-get update -y --no-install-recommends | ||
sudo apt-get install -y --no-install-recommends subversion | ||
fi | ||
|
||
echo "Done!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters