forked from vieter-v/vieter
Started a changelog [CI SKIP]
parent
83f1e3aa3d
commit
797b63f8ea
|
@ -14,6 +14,11 @@ pipeline:
|
||||||
tag: dev
|
tag: dev
|
||||||
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
|
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
|
||||||
dry_run: true
|
dry_run: true
|
||||||
|
build_args_from_env:
|
||||||
|
- CI_COMMIT_SHA
|
||||||
when:
|
when:
|
||||||
event: pull_request
|
event: pull_request
|
||||||
branch: dev
|
branch: dev
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
|
|
@ -6,8 +6,8 @@ pipeline:
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
secrets: [ docker_username, docker_password ]
|
secrets: [ docker_username, docker_password ]
|
||||||
settings:
|
settings:
|
||||||
dockerfile: Dockerfile.ci
|
|
||||||
repo: chewingbever/vieter
|
repo: chewingbever/vieter
|
||||||
|
dockerfile: Dockerfile.ci
|
||||||
tag: dev
|
tag: dev
|
||||||
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
|
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
|
||||||
build_args_from_env:
|
build_args_from_env:
|
||||||
|
@ -21,10 +21,13 @@ pipeline:
|
||||||
secrets: [ docker_username, docker_password ]
|
secrets: [ docker_username, docker_password ]
|
||||||
settings:
|
settings:
|
||||||
repo: chewingbever/vieter
|
repo: chewingbever/vieter
|
||||||
|
dockerfile: Dockerfile.ci
|
||||||
tag:
|
tag:
|
||||||
- latest
|
- latest
|
||||||
- $CI_COMMIT_TAG
|
- ${CI_COMMIT_TAG}
|
||||||
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
|
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
|
||||||
|
build_args_from_env:
|
||||||
|
- CI_COMMIT_SHA
|
||||||
when:
|
when:
|
||||||
event: tag
|
event: tag
|
||||||
branch: main
|
branch: main
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased](https://git.rustybever.be/Chewing_Bever/vieter)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Ability to publish packages
|
||||||
|
* Re-wrote repo-add in V
|
|
@ -16,9 +16,11 @@ that.
|
||||||
### Custom Compiler
|
### Custom Compiler
|
||||||
|
|
||||||
Currently, this program only works with a very slightly modified version of the
|
Currently, this program only works with a very slightly modified version of the
|
||||||
V standard library, and therefore the compiler. The code for this can be found
|
V standard library, and therefore the compiler. The changes that are made to
|
||||||
[here](https://github.com/ChewingBever/v). For CI purposes & ease of use, you
|
the standard V release can be found in the [patches](/patches) directory. You
|
||||||
can also clone & build that repo locally by running `make customv`.
|
can obtain this modified version of the compiler by running `make v`, which
|
||||||
|
will download, patch & build the compiler. Afterwards, all make commands that
|
||||||
|
require the V compiler will use this new binary.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue