aboutsummaryrefslogtreecommitdiff
path: root/ci
AgeCommit message (Collapse)Author
2019-11-06fix bash comparisonJorge Aparicio
2019-11-06run cfail tests only when rustc --version == $MSRVJorge Aparicio
this version is more or less fixed so new releases of Rust (stable or nightly channel) are unlikely to break to build due to changes in diagnostic messages
2019-11-06CI: replace compiletest-rs with trybuildJorge Aparicio
We use compiletest to run compile-fail tests but compiletest depends on compiler internals so it breaks every now and then and requires nightly. With trybuild we can also run compile-fail tests but it works on stable and it already has reached version 1.0
2019-10-25CI: build 0.4 docs from the v0.4.x branchJorge Aparicio
instead of using a specific tag; this way documentation changes done to the v0.4.x branch will show up on the site as soon as they land -- right now they require publishing a new v0.4.x release on crates.io and manually updating the `after-success.sh` build script on master
2019-10-15v0.5.0 beta releaseJorge Aparicio
2019-09-17www: fix book placementJorge Aparicio
2019-09-17www: prefix latest docs with the minor versionJorge Aparicio
2019-09-15fix install scriptJorge Aparicio
2019-09-150.4: don't cross compile docsJorge Aparicio
2019-09-15faster doc builds and fix redirect on 0.4Jorge Aparicio
2019-09-15fix redirects and CNAMEJorge Aparicio
2019-09-15fix gh-pages buildJorge Aparicio
2019-08-21ci: install some thumb targets on x86Jorge Aparicio
2019-08-21ci: fix x86 buildJorge Aparicio
2019-08-21fix preempt exampleJorge Aparicio
2019-08-21bump mdbook to v0.3.1Jorge Aparicio
2019-08-21doc upJorge Aparicio
2019-07-10implement RFC #212Jorge Aparicio
2019-06-18add homogeneous multi-core supportJorge Aparicio
2019-06-13rtfm-syntax refactor + heterogeneous multi-core supportJorge Aparicio
2019-05-21bump heapless dependency to v0.5.0; remove "nightly" featureJorge Aparicio
with the upcoming version of heapless we are able to initialize all internal queues in const context removing the need for late initialization this commit also removes the "nightly" feature because all the optimization provided by it are now enabled by default
2019-05-01book: indirection for faster message passingJorge Aparicio
2019-05-01push docs to another repo & update READMEJorge Aparicio
2019-05-01ci: the singleton example has been removedJorge Aparicio
2019-04-21add .run fileJorge Aparicio
2019-04-21book: resources shared with init must also be `Send`Jorge Aparicio
2019-02-26add `binds` example and make it workJorge Aparicio
2019-02-23fix ciJorge Aparicio
2019-02-19ci: report the size of built examplesJorge Aparicio
2019-02-19ci: test the nightly featureJorge Aparicio
2019-02-16make debug builds reproducibleJorge Aparicio
2019-02-16Temporarily disable checking for reproducibility of debug builds.Hugo van der Wijst
2019-02-16Make generated names stable when sorting.Hugo van der Wijst
2019-02-16Fix thumbv6 build.Hugo van der Wijst
2019-02-16Make identifiers deterministic.Hugo van der Wijst
2019-02-16Speed up CI significantly.Hugo van der Wijst
2019-02-16Make builds reproducibleHugo van der Wijst
This is done by using `BTreeMap`s and `BTreeSet`s to get deterministic ordering. Also updated the CI job to check reproducibility of all examples.
2019-02-14set a redirect from book/ to book/en/Jorge Aparicio
closes #148
2019-02-11fix ci/after-success.shJorge Aparicio
2019-02-11change layout of booksJorge Aparicio
2019-02-08skeleton for the Russian translation of the bookJorge Aparicio
2019-02-08impl Default for DurationJorge Aparicio
2018-12-16actually, don't check the output of the cfg exampleJorge Aparicio
2018-12-16book: add an example of conditional compilation of resources and tasksJorge Aparicio
2018-12-16note that the timer queue is not supported on ARMv6-MJorge Aparicio
2018-12-15ci: switch to an older nightlyJorge Aparicio
to work around rust-lang/rust#56814
2018-11-04impl Mutex on all shared resourcesJorge Aparicio
document how to write generic code that operates on resources
2018-11-03run linkcheckerJorge Aparicio
2018-11-03ci: install mdbookJorge Aparicio
2018-11-03fix TRAVIS_PULL_REQUEST logicJorge Aparicio