Skip to content

Commit facf1db

Browse files
committed
Automated deployment: Wed Apr 8 00:47:12 UTC 2026 a8b9fcb
0 parents  commit facf1db

1,520 files changed

Lines changed: 44788 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/update.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Update gh-pages branch on alire.ada.dev
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
push:
7+
branches:
8+
- master
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- uses: alire-project/setup-alire@v5
15+
- run: bash -v update-gh-pages.sh
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GH_PAGES_UPDATE }}
18+
19+
- name: Request Github Pages build job
20+
run: >-
21+
curl -L -X POST
22+
-H "Content-Type: application/json"
23+
-H "Authorization: token ${{ secrets.GH_PAGES_UPDATE }}"
24+
"https://api.github.com/repos/${{ github.repository }}/pages/builds"

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site/
2+
.sass-cache/
3+
.jekyll-cache/
4+
.jekyll-metadata
5+
Gemfile.lock

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
alire.ada.dev

Gemfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
#gem "jekyll", "~> 3.8.6"
12+
13+
# gem "devlopr"
14+
15+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
16+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
17+
gem "github-pages", group: :jekyll_plugins
18+
19+
# If you have any plugins, put them here!
20+
group :jekyll_plugins do
21+
gem "jekyll-feed", "~> 0.6"
22+
end
23+
24+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
25+
# and associated library.
26+
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
27+
gem "tzinfo", "~> 1.2"
28+
gem "tzinfo-data"
29+
end
30+
31+
# Performance-booster for watching directories on Windows
32+
gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?
33+

README.md

Lines changed: 2 additions & 0 deletions

_badges/a0b_armv7m.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: badge
3+
crate: "a0b_armv7m"
4+
version: "0.4.0"
5+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: badge
3+
crate: "a0b_armv7m_systick_clock"
4+
version: "0.1.0"
5+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: badge
3+
crate: "a0b_armv7m_systick_clock_timer"
4+
version: "0.1.0"
5+
---

_badges/a0b_atsam3x8e.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: badge
3+
crate: "a0b_atsam3x8e"
4+
version: "0.4.0"
5+
---

0 commit comments

Comments
 (0)