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 752d785
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 28 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build CI

on:
push:
pull_request:
release:
types: [published]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

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 && make drop-pkg
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: build/uf2-samd1x-*.zip

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 752d785

Please sign in to comment.