Compare commits
16 commits
Author | SHA1 | Date | |
---|---|---|---|
|
1a78a73047 | ||
|
51b48be046 | ||
|
ea16ecbb38 | ||
|
654e484f4a | ||
|
49f859c26e | ||
|
86f36a9503 | ||
|
ace6ad2e38 | ||
|
b1c3da9f54 | ||
|
55c894b93d | ||
|
fa8e1c7645 | ||
|
93e3380c9b | ||
|
198d917469 | ||
|
5ee06fcbe7 | ||
|
886ec38434 | ||
|
af3a2d95cb | ||
|
89d9d7fd09 |
1 changed files with 30 additions and 0 deletions
30
.github/workflows/build.yml
vendored
Normal file
30
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: Buildfish build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
tags:
|
||||
- '*'
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: update submodules
|
||||
run: git submodule sync --recursive && git submodule update --init --force --recursive --depth=1
|
||||
|
||||
- name: Build armv7hl
|
||||
id: build_armv7hl
|
||||
uses: attah/buildfish@0.9
|
||||
with:
|
||||
release: 3.3.0.14
|
||||
|
||||
- name: Post
|
||||
run: ls RPMS
|
Loading…
Reference in a new issue