Skip to content
Snippets Groups Projects
Commit fde4aff1 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy
Browse files

Merge branch 'gitlab-reports' into 'master'

Fix Gitlab reports: use upstream master

See merge request !937
parents b01ed183 3a7a25b2
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
git checkout origin/master git remote add upstream https://gitlab.redox-os.org/redox-os/ion.git
git fetch upstream
git checkout upstream/master
cargo bench cargo bench
cargo build --release cargo build --release
PREV_SIZE=$(ls -al target/release/ion | cut -d' ' -f5) PREV_SIZE=$(ls -al target/release/ion | cut -d' ' -f5)
git reset --hard HEAD
git stash push
git checkout - git checkout -
cargo bench cargo bench
cargo build --release cargo build --release
...@@ -68,4 +71,4 @@ $result ...@@ -68,4 +71,4 @@ $result
echo $result > target/report.xml echo $result > target/report.xml
exit $(test "$total_worse" -eq "0"; echo $?) test "$total_worse" -eq "0"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment