Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99f97874ea
|
||
|
|
6c3df1d4cd
|
@@ -1,31 +1,31 @@
|
|||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
|
||||||
[[push]]
|
# [[push]]
|
||||||
name = "rust-test"
|
# name = "rust-test"
|
||||||
source = "pipeline-rust-test.yaml"
|
# source = "pipeline-rust-test.yaml"
|
||||||
clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
# clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
||||||
skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
|
# skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
|
||||||
|
|
||||||
[[push]]
|
[[push]]
|
||||||
name = "foreign-document-test"
|
name = "foreign-document-test"
|
||||||
source = "pipeline-foreign-document-test.yaml"
|
source = "pipeline-foreign-document-test.yaml"
|
||||||
clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
||||||
branches = [ "^main$", "^master$" ]
|
branches = [ "^main$", "^master$", "^no_add$" ]
|
||||||
|
|
||||||
[[push]]
|
# [[push]]
|
||||||
name = "clippy"
|
# name = "clippy"
|
||||||
source = "pipeline-rust-clippy.yaml"
|
# source = "pipeline-rust-clippy.yaml"
|
||||||
clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
# clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
||||||
skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
|
# skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
|
||||||
|
|
||||||
[[push]]
|
# [[push]]
|
||||||
name = "format"
|
# name = "format"
|
||||||
source = "pipeline-format.yaml"
|
# source = "pipeline-format.yaml"
|
||||||
clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
# clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
||||||
skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
|
# skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
|
||||||
|
|
||||||
[[push]]
|
# [[push]]
|
||||||
name = "build"
|
# name = "build"
|
||||||
source = "pipeline-build-hash.yaml"
|
# source = "pipeline-build-hash.yaml"
|
||||||
clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
# clone_uri = "git@code.fizz.buzz:talexander/organic.git"
|
||||||
branches = [ "^main$", "^master$" ]
|
# branches = [ "^main$", "^master$" ]
|
||||||
|
|||||||
@@ -19,7 +19,17 @@ RUN apk add --no-cache build-base musl-dev git autoconf make texinfo gnutls-dev
|
|||||||
FROM build AS build-emacs
|
FROM build AS build-emacs
|
||||||
ARG EMACS_REPO
|
ARG EMACS_REPO
|
||||||
ARG EMACS_VERSION
|
ARG EMACS_VERSION
|
||||||
ADD "$EMACS_REPO#$EMACS_VERSION" /root/emacs
|
|
||||||
|
RUN <<EOF
|
||||||
|
set -euo pipefail
|
||||||
|
IFS=$'\n\t'
|
||||||
|
mkdir -p /root/emacs
|
||||||
|
git -C /root/emacs init --initial-branch=main
|
||||||
|
git -C /root/emacs remote add origin $EMACS_REPO
|
||||||
|
git -C /root/emacs fetch origin $EMACS_VERSION
|
||||||
|
git -C /root/emacs checkout FETCH_HEAD
|
||||||
|
EOF
|
||||||
|
#ADD "$EMACS_REPO#$EMACS_VERSION" /root/emacs
|
||||||
WORKDIR /root/emacs
|
WORKDIR /root/emacs
|
||||||
RUN <<EOF
|
RUN <<EOF
|
||||||
mkdir /root/dist
|
mkdir /root/dist
|
||||||
|
|||||||
Reference in New Issue
Block a user