Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
stm32f4-hal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Per Lindgren
stm32f4-hal
Commits
1eb35fd4
Commit
1eb35fd4
authored
Jan 12, 2018
by
Jorge Aparicio
Browse files
Options
Downloads
Patches
Plain Diff
add ci
parent
c2409c0a
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+48
-0
48 additions, 0 deletions
.travis.yml
ci/install.sh
+19
-0
19 additions, 0 deletions
ci/install.sh
ci/script.sh
+12
-0
12 additions, 0 deletions
ci/script.sh
with
79 additions
and
0 deletions
.travis.yml
0 → 100644
+
48
−
0
View file @
1eb35fd4
# Based on the "trust" template v0.1.2
# https://github.com/japaric/trust/tree/v0.1.2
dist
:
trusty
language
:
rust
services
:
docker
sudo
:
required
matrix
:
include
:
# Linux
-
env
:
TARGET=x86_64-unknown-linux-gnu
# Bare metal
-
env
:
TARGET=thumbv7em-none-eabi
-
env
:
TARGET=thumbv7em-none-eabihf
before_install
:
-
set -e
-
rustup self update
install
:
-
sh ci/install.sh
-
source ~/.cargo/env ||
true
script
:
-
bash ci/script.sh
after_script
:
set +e
cache
:
cargo
:
true
directories
:
-
$HOME/.xargo
before_cache
:
# Travis can't cache files that are not readable by "others"
-
chmod -R a+r $HOME/.cargo
branches
:
only
:
-
auto
-
master
-
try
notifications
:
email
:
on_success
:
never
This diff is collapsed.
Click to expand it.
ci/install.sh
0 → 100644
+
19
−
0
View file @
1eb35fd4
set
-ex
main
()
{
# This fetches latest stable release of Xargo
local
tag
=
$(
git ls-remote
--tags
--refs
--exit-code
https://github.com/japaric/xargo
\
|
cut
-d
/
-f3
\
|
grep
-E
'^v[0.1.0-9.]+$'
\
|
sort
--version-sort
\
|
tail
-n1
)
curl
-LSfs
https://japaric.github.io/trust/install.sh |
\
sh
-s
--
\
--force
\
--git
japaric/xargo
\
--tag
$tag
\
--target
x86_64-unknown-linux-musl
}
main
This diff is collapsed.
Click to expand it.
ci/script.sh
0 → 100644
+
12
−
0
View file @
1eb35fd4
# This script takes care of testing your crate
set
-ex
main
()
{
xargo check
--target
$TARGET
}
# we don't run the "test phase" when doing deploys
if
[
-z
$TRAVIS_TAG
]
;
then
main
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment