We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772f795 commit e528795Copy full SHA for e528795
.cirrus.yml
@@ -0,0 +1,15 @@
1
+task:
2
+ name: Linux amd64 nightly
3
+ container:
4
+ image: rustlang/rust:nightly
5
+ cpu: 1
6
+ memory: 1
7
+ setup_script:
8
+ - apt-get update
9
+ - apt-get install -yqq nasm bsdmainutils
10
+ build_script:
11
+ - ./build.sh
12
+ test_script:
13
+ - ./tinyrust
14
+ - test "$(./tinyrust)" == 'Hello!'
15
+ - test "$(wc -c < tinyrust)" -eq 137
README.md
@@ -1,5 +1,7 @@
# Using Rust to make a 137-byte static AMD64 Linux binary
+[](https://cirrus-ci.com/github/tormol/tiny-rust-executable)
+
Requires nightly Rust because it uses the `sc` crate to make direct
system calls.
0 commit comments