Skip to content

Commit

Permalink
Update to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed May 2, 2024
1 parent d728aa1 commit 3b5c7ff
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Set up repository
uses: actions/checkout@v4
with:
submodules: false
show-progress: false
- name: Set up compiler
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
# When changing this update what Windows grabs too!
release: '13.2.Rel1'
- name: Build
run: make -j$(nproc) all-boards
- name: Rename release assets
run: |
mkdir dist
cp build/*/*.uf2 dist/
cp build/*/*.bin dist/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_modules
scripts/clean-ifaces/*.plist
.vscode/c_cpp_properties.json
TAGS
dist
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

0 comments on commit 3b5c7ff

Please sign in to comment.