Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmoon committed Dec 28, 2020
0 parents commit 1875b8d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
20 changes: 20 additions & 0 deletions gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: "hello-linux"
enable_cache: true
distro: "ubuntu"
suites:
- "bionic"
architectures:
- "amd64"
packages:
- "gcc"
remotes:
- "url": "https://github.com/mooniversity/gitian-example.git"
"dir": "gitian-example"
"commit": "TODO"
files: []
script: |
cd gitian-example
export SOURCE_DATE_EPOCH=0
g++ hello.cpp -o hello
mv hello $OUTDIR
7 changes: 7 additions & 0 deletions hello.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <iostream>

int main()
{
std::cout << "Hello, " << __TIME__ << "!" << std::endl;
return 0;
}

0 comments on commit 1875b8d

Please sign in to comment.