Compare commits
6 Commits
stable-1.1
...
devel-1.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 475e11f53e | |||
| 8e1474696c | |||
| 347186f252 | |||
| 35b1629c4b | |||
| b6cf1c50d8 | |||
| 036c8aa12e |
@@ -23,17 +23,24 @@ jobs:
|
||||
# need the full history or else grafted partial branches confuse the
|
||||
# changed files detector
|
||||
|
||||
# - name: Set up GNAT toolchain (FSF)
|
||||
# uses: ada-actions/toolchain@ce2020
|
||||
# with:
|
||||
# distrib: fsf # faster install?
|
||||
|
||||
- name: Set up stable `alr`
|
||||
if: contains(github.base_ref, 'stable-')
|
||||
uses: alire-project/setup-alire@v1
|
||||
with:
|
||||
toolchain: --disable-assistant # We don't need the compiler
|
||||
|
||||
- name: Set up GNAT toolchain (FSF)
|
||||
if: (matrix.os == 'ubuntu-latest') && (contains(github.base_ref, 'devel-'))
|
||||
uses: ada-actions/toolchain@ce2020
|
||||
with:
|
||||
distrib: fsf # faster install?
|
||||
|
||||
- name: Set up GNAT toolchain (Community)
|
||||
if: (matrix.os != 'ubuntu-latest') && (contains(github.base_ref, 'devel-'))
|
||||
uses: ada-actions/toolchain@ce2020
|
||||
with:
|
||||
distrib: community
|
||||
|
||||
- name: Set up devel `alr`
|
||||
if: contains(github.base_ref, 'devel-')
|
||||
uses: alire-project/setup-alire@v1
|
||||
@@ -43,4 +50,4 @@ jobs:
|
||||
|
||||
- name: Diff releases
|
||||
run: scripts/diff-release.sh || true # No deal breaker if failed
|
||||
shell: bash
|
||||
shell: bash
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
# Changes to the index format that require versioning
|
||||
|
||||
## 1.2
|
||||
|
||||
- Build profiles and switches.
|
||||
- New `subdir` property in git remotes.
|
||||
- New `host-arch` key for case expressions.
|
||||
+1
-1
@@ -1 +1 @@
|
||||
version = "1.1"
|
||||
version = "1.2"
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
name = "midi"
|
||||
description = "Library to encode and decode MIDI messages"
|
||||
version = "0.1.0"
|
||||
licenses = "MIT"
|
||||
authors = ["Fabien Chouteau"]
|
||||
maintainers = ["Fabien Chouteau <fabien.chouteau@gmail.com>"]
|
||||
maintainers-logins = ["Fabien-Chouteau"]
|
||||
website = "https://github.com/Fabien-Chouteau/MIDI"
|
||||
tags = ["midi", "embedded", "nostd"]
|
||||
|
||||
[[depends-on]]
|
||||
hal = "~0.3.0"
|
||||
bbqueue = "~0.3.0"
|
||||
|
||||
[origin]
|
||||
commit = "14c7842aa16ad970ca0eb53f6cbf31cc2b648a72"
|
||||
url = "git+https://github.com/Fabien-Chouteau/MIDI.git"
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
name = "resources"
|
||||
description = "Utility library to handle project resources at run-time"
|
||||
version = "0.1.0"
|
||||
|
||||
licenses = "MIT"
|
||||
website = "https://github.com/alire-project/resources"
|
||||
tags = ["utils"]
|
||||
|
||||
authors = ["Alire Team"]
|
||||
maintainers = ["Fabien Chouteau <fabien.chouteau@gmail.com>"]
|
||||
maintainers-logins = ["Fabien-Chouteau", "mosteo"]
|
||||
|
||||
[origin]
|
||||
commit = "a418da627ec3d18f50f60edaee41a2f47f173a0e"
|
||||
url = "git+https://github.com/alire-project/resources.git"
|
||||
Reference in New Issue
Block a user