File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,8 @@ alpine-base:
20
20
WORKDIR "/nasm-x86-shellcode-generator"
21
21
22
22
23
- rust-base :
24
- FROM +alpine-base
25
- # renovate: datasource=repology depName=alpine_3_20/rust versioning=loose
26
- ENV RUST_VERSION= "1.78.0-r0"
27
- RUN apk add --no-cache cargo= $RUST_VERSION
28
-
29
-
30
23
check-clean-git-history :
31
- FROM +rust -base
24
+ FROM +alpine -base
32
25
# renovate: datasource=github-releases depName=DeveloperC286/clean_git_history
33
26
ENV CLEAN_GIT_HISTORY_VERSION= "v0.2.0"
34
27
RUN wget -O - "https://github.com/DeveloperC286/clean_git_history/releases/download/${CLEAN_GIT_HISTORY_VERSION}/x86_64-unknown-linux-musl.gz" | gzip -d > /usr/bin/clean_git_history && chmod 755 /usr/bin/clean_git_history
@@ -38,7 +31,7 @@ check-clean-git-history:
38
31
39
32
40
33
check-conventional-commits-linting :
41
- FROM +rust -base
34
+ FROM +alpine -base
42
35
# renovate: datasource=github-releases depName=DeveloperC286/conventional_commits_linter
43
36
ENV CONVENTIONAL_COMMITS_LINTER_VERSION= "v0.13.0"
44
37
RUN wget -O - "https://github.com/DeveloperC286/conventional_commits_linter/releases/download/${CONVENTIONAL_COMMITS_LINTER_VERSION}/x86_64-unknown-linux-musl.gz" | gzip -d > /usr/bin/conventional_commits_linter && chmod 755 /usr/bin/conventional_commits_linter
@@ -88,6 +81,11 @@ COPY_SOURCECODE:
88
81
89
82
90
83
compile :
91
- FROM +rust-base
84
+ FROM +alpine-base
85
+ # renovate: datasource=repology depName=alpine_3_20/gcc versioning=loose
86
+ ENV GCC_VERSION= "13.2.1_git20240309-r0"
87
+ # renovate: datasource=repology depName=alpine_3_20/musl-dev versioning=loose
88
+ ENV MUSL_VERSION= "1.2.5-r0"
89
+ RUN apk add --no-cache gcc= $GCC_VERSION musl-dev= $MUSL_VERSION
92
90
DO +COPY_SOURCECODE
93
91
RUN ./ci/compile.sh
You can’t perform that action at this time.
0 commit comments