(Arm64/IPv6-only)
This guide describes how to install Void Linux on ARM Hetzner Cloud instances with IPv6-only setup.
Table of contents:
(Arm64/IPv6-only)
This guide describes how to install Void Linux on ARM Hetzner Cloud instances with IPv6-only setup.
Table of contents:
# This build is for a CodeBuild that builds an image with buildah or podman and pushes it to ECR. | |
# You will get whatever buildah / podman is/was the last supported one for CentOS 7. So the version won't be the latest. | |
# This is mainly useful to get your first custom image pushed to ECR so you can switch to that. | |
# Note: this config is for ARM images. Check pkgs org for the paths to other builds if needed. | |
version: 0.2 | |
env: | |
shell: /bin/sh | |
phases: |
// Add this to your settings.gradle.kts | |
// It should likely go after the plugin settings block, which is said to have to be first thing, and before any of your | |
// includes. | |
// NOTE: By default, gradle ignores .gitignore. If you plan on using this for zipping or such, you probably want to do | |
// org.apache.tools.ant.DirectoryScanner.removeDefaultExclude("**/.gitignore") | |
// too to get the .gitignore in. | |
try { | |
val file = File(".gitignore") | |
val fr = java.io.FileReader(file) | |
val br = java.io.BufferedReader(fr) |
/** | |
* JetBrains Space Automation | |
* This Kotlin-script file lets you automate build activities | |
* For more info, see https://www.jetbrains.com/help/space/automation.html | |
*/ | |
import kotlinx.coroutines.runBlocking | |
import circlet.pipelines.script.ScriptApi | |
class Chatter constructor(scriptAPI: ScriptApi) { | |
val api = scriptAPI |