-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
175 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
FROM ubuntu:24.04 AS spython-base | ||
FROM ubuntu:24.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
WORKDIR /workspace | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update | ||
RUN apt-get install -y --no-install-recommends git gh | ||
RUN apt-get install -y --no-install-recommends less | ||
RUN apt-get install -y --no-install-recommends python3 | ||
RUN apt-get install -y --no-install-recommends python3.12-venv python3-pip | ||
RUN apt-get install -y --no-install-recommends python3.12-venv | ||
RUN apt-get install -y --no-install-recommends python3-pip | ||
RUN apt-get install -y --no-install-recommends build-essential | ||
RUN apt-get install -y --no-install-recommends ruby ruby-dev | ||
RUN apt-get install -y --no-install-recommends ruby | ||
RUN apt-get install -y --no-install-recommends ruby-dev | ||
RUN apt-get install -y --no-install-recommends bundler | ||
RUN apt-get install -y --no-install-recommends nodejs | ||
RUN apt-get install -y --no-install-recommends npm | ||
RUN apt-get install -y --no-install-recommends ditaa | ||
RUN apt-get install -y --no-install-recommends libyaml-dev | ||
RUN apt-get clean autoclean | ||
RUN apt-get autoremove -y | ||
RUN rm -rf /var/lib/{apt, dpkg, cache, log} | ||
RUN rm -rf /var/lib/{apt,dpkg,cache,log}/* | ||
|
||
WORKDIR /workspace |
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
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 |
---|---|---|
|
@@ -13,6 +13,8 @@ jobs: | |
- uses: pre-commit/[email protected] | ||
regress-smoke: | ||
runs-on: ubuntu-latest | ||
env: | ||
SINGULARITY: 1 | ||
steps: | ||
- name: Clone Github Repo Action | ||
uses: actions/checkout@v4 | ||
|
@@ -45,6 +47,7 @@ jobs: | |
env: | ||
MANUAL_NAME: isa | ||
VERSIONS: all | ||
SINGULARITY: 1 | ||
steps: | ||
- name: Clone Github Repo Action | ||
uses: actions/checkout@v4 | ||
|
@@ -75,6 +78,7 @@ jobs: | |
env: | ||
EXT: B | ||
VERSION: latest | ||
SINGULARITY: 1 | ||
steps: | ||
- name: Clone Github Repo Action | ||
uses: actions/checkout@v4 | ||
|
@@ -102,6 +106,8 @@ jobs: | |
regress-gen-certificate: | ||
runs-on: ubuntu-latest | ||
needs: regress-smoke | ||
env: | ||
SINGULARITY: 1 | ||
steps: | ||
- name: Clone Github Repo Action | ||
uses: actions/checkout@v4 | ||
|
@@ -129,6 +135,8 @@ jobs: | |
regress-gen-profile: | ||
runs-on: ubuntu-latest | ||
needs: regress-smoke | ||
env: | ||
SINGULARITY: 1 | ||
steps: | ||
- name: Clone Github Repo Action | ||
uses: actions/checkout@v4 | ||
|
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
.stamps | ||
.venv | ||
.asciidoctor | ||
.container-type | ||
diag-ditaa-* | ||
arch/manual/isa/**/riscv-isa-manual | ||
gen | ||
|
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