-
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.
Add packaging for distribution (#33)
Adds distribution package creation, re-enables test cases, updates some APIs.
- Loading branch information
1 parent
65c1a85
commit d6a9eac
Showing
138 changed files
with
1,706 additions
and
2,298 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Dockerfile |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# hadolint global ignore=DL3033,SC3044 | ||
FROM novafacing/fedora-rustc-oldcompat:0.0.1 | ||
|
||
ENV PATH="${PATH}:/simics/ispm/" | ||
ENV PATH="${PATH}:/root/.cargo/bin/" | ||
|
||
COPY . /tsffs/ | ||
|
||
WORKDIR /tsffs/ | ||
|
||
RUN mkdir -p /simics/ispm && \ | ||
tar -C /simics/ispm --strip-components=1 -xvf .github/builder/rsrc/ispm.tar.gz && \ | ||
ispm settings install-dir /simics && \ | ||
ispm packages --install-bundle .github/builder/rsrc/simics.ispm --non-interactive --trust-insecure-packages && \ | ||
ispm projects "$(pwd)" --create --ignore-existing-files --non-interactive && \ | ||
bin/project-setup --force && \ | ||
cargo -Zscript build.rs |
Oops, something went wrong.