Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

chore(ci): ci containers #3909

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/publish_container_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,13 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout PR Branch
uses: actions/checkout@v3
with:
submodules: false
- name: List ci
working-directory: ci
run: ls -la
- name: Publish Container
run: ./ci/publish.sh
working-directory: ci
run: ./publish.sh
5 changes: 4 additions & 1 deletion ci/rome-ci-x86-64-centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ RUN yum install gcc gcc-c++ make openssl-devel git -y
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
RUN nvm install 14
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN cargo install cargo-audit
RUN cargo install cargo-audit
RUN cargo install cargo-nextest
RUN cargo install just
CMD ["/bin/bash", "--login"]