Skip to content

Commit a7eee80

Browse files
committed
Merge branch '👷-tagref' into 🦆
2 parents dd31ea3 + d56dc65 commit a7eee80

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: r3-install-tagref
2+
description: Install Tagref
3+
runs:
4+
using: composite
5+
steps:
6+
- shell: bash
7+
run: |
8+
wget https://github.com/stepchowfun/tagref/releases/download/v1.5.0/tagref-x86_64-unknown-linux-gnu -O tagref-x86_64-unknown-linux-gnu
9+
sha256sum .github/actions/install-tagref/tagref.sha256
10+
chmod +x tagref-x86_64-unknown-linux-gnu
11+
sudo mv tagref-x86_64-unknown-linux-gnu /usr/local/bin/tagref
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c29dfaa7614d524449fd5f9085fac5a03434e6f90db864d0df183ce9f8a23e7c tagref-x86_64-unknown-linux-gnu

‎.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
profile: minimal
2020
components: clippy, rustfmt
2121

22+
- name: Install tagref
23+
uses: ./.github/actions/install-tagref
24+
2225
- name: Install dependencies (Linux)
2326
run: |
2427
sudo apt-get update
@@ -31,6 +34,9 @@ jobs:
3134
sed -E -i.bak 's/.*basic_.*//' Cargo.toml
3235
sed -E -i.bak 's/.*smp_rp_pico.*//' Cargo.toml
3336
37+
- name: Check cross-references with Tagref
38+
run: tagref
39+
3440
- name: Clippy
3541
uses: actions-rs/clippy-check@v1
3642
with:

‎shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ runCommand "dummy" rec {
77
libusb1
88
openocd
99
rustup
10+
tagref
1011
qemu
1112
gcc
1213
];

0 commit comments

Comments
 (0)