-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26fd270
commit 8c3f200
Showing
6 changed files
with
84 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
(rule | ||
(alias macos) | ||
(deps | ||
./specs/simple.macos.spec | ||
./macos.sh | ||
../../main.exe) | ||
(targets ./simple.out) | ||
(action | ||
(with-stdout-to ./simple.out (run ./macos.sh)))) | ||
|
||
(rule | ||
(alias macos) | ||
(action (diff simple.expected simple.out))) |
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,5 @@ | ||
#!/bin/sh | ||
mkdir -p /tmp/scoreboard | ||
../../main.exe build . -f ./specs/simple.macos.spec --uid=705 --store=rsync:/tmp/rsync --fallback=/ --scoreboard=/tmp/scoreboard --no-fuse | ||
../../main.exe build . -f ./specs/simple.macos.spec --uid=705 --store=rsync:/tmp/rsync --fallback=/ --scoreboard=/tmp/scoreboard --no-fuse | ||
sudo rm -rf /tmp/rsync |
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,38 @@ | ||
(from patricoferris/empty@sha256:b95ca2b377dd736f609f0a10d63318c9f627a817823cf416402a29bfe9202bb9) | ||
---> saved as "1e8a7b908b7883f051110a922dc647791b81e0d658f5c1bdd8242d9ab898f8ae" | ||
/: (run (shell "mkdir hello")) | ||
---> saved as "ba0dc81067c02a45ad4a8cdbbca046aa1e59a37deca612c6a4f8698ae67e200f" | ||
/: (run (shell "echo 'hello world' > ./hello/hello.txt")) | ||
---> saved as "ee3328c16f05527e80a95b87c110aac986495aef607f14b9ef4371398a8659d8" | ||
/: (run (shell "cat ./hello/hello.txt")) | ||
hello world | ||
---> saved as "c97a5a234cc9bfcc601b2f7a98975bf294fa7552301c182358fc32ceb21308d8" | ||
/: (run (shell "rm -rf hello")) | ||
---> saved as "de2d77926d7e89828a3578ef5173bbce6050e2a7e39488b1de54dcffa864a600" | ||
/: (run (shell ls)) | ||
dev | ||
etc | ||
local | ||
proc | ||
sys | ||
---> saved as "0b38a347b26152e1115a76902af06ff34a4f38aa2182e3af04e2867801fce841" | ||
Got: "0b38a347b26152e1115a76902af06ff34a4f38aa2182e3af04e2867801fce841" | ||
(from patricoferris/empty@sha256:b95ca2b377dd736f609f0a10d63318c9f627a817823cf416402a29bfe9202bb9) | ||
---> using "1e8a7b908b7883f051110a922dc647791b81e0d658f5c1bdd8242d9ab898f8ae" from cache | ||
/: (run (shell "mkdir hello")) | ||
---> using "ba0dc81067c02a45ad4a8cdbbca046aa1e59a37deca612c6a4f8698ae67e200f" from cache | ||
/: (run (shell "echo 'hello world' > ./hello/hello.txt")) | ||
---> using "ee3328c16f05527e80a95b87c110aac986495aef607f14b9ef4371398a8659d8" from cache | ||
/: (run (shell "cat ./hello/hello.txt")) | ||
hello world | ||
---> using "c97a5a234cc9bfcc601b2f7a98975bf294fa7552301c182358fc32ceb21308d8" from cache | ||
/: (run (shell "rm -rf hello")) | ||
---> using "de2d77926d7e89828a3578ef5173bbce6050e2a7e39488b1de54dcffa864a600" from cache | ||
/: (run (shell ls)) | ||
dev | ||
etc | ||
local | ||
proc | ||
sys | ||
---> using "0b38a347b26152e1115a76902af06ff34a4f38aa2182e3af04e2867801fce841" from cache | ||
Got: "0b38a347b26152e1115a76902af06ff34a4f38aa2182e3af04e2867801fce841" |
File renamed without changes.
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 @@ | ||
; Tests a bug where some directories/file from previous steps that were | ||
; deleted where still hanging around. | ||
|
||
((from patricoferris/empty@sha256:b95ca2b377dd736f609f0a10d63318c9f627a817823cf416402a29bfe9202bb9) | ||
(run (shell "mkdir hello")) | ||
(run (shell "echo 'hello world' > ./hello/hello.txt")) | ||
(run (shell "cat ./hello/hello.txt")) | ||
(run (shell "rm -rf hello")) | ||
(run (shell "ls"))) |