-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add python 3.12 * test linux container * remove dlpack-rs * remove docke setup * test windows * test windows * test macos * try linux i686 * add nasm * enable all again * cleanup * remove dlpack-rs for now * update deps * test ci i686 * test i686 * fix typo * try install dps * try again * try test macos * try again * try macos * try macos * deps
- Loading branch information
Showing
9 changed files
with
73 additions
and
321 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
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
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main | ||
|
||
RUN dpkg --add-architecture arm64 && \ | ||
apt-get update && \ | ||
RUN apt-get update && \ | ||
apt-get install --assume-yes \ | ||
cmake \ | ||
nasm:arm64 \ | ||
nasm \ | ||
&& \ | ||
apt-get clean |
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,9 @@ | ||
FROM ghcr.io/cross-rs/i686-unknown-linux-gnu:main | ||
|
||
RUN apt-get update && \ | ||
apt-get install --assume-yes \ | ||
cmake \ | ||
gcc \ | ||
nasm \ | ||
&& \ | ||
apt-get clean |
Oops, something went wrong.