CI: build master-ci in Actions (#24533)
* jenkins: build master-ci on pc * make target configurable * build on actions * no wait * more fetch * v3 has push? * example * remove that * wait * v1.1.1 * this one works * schedule * clear out target first * no lfspull/24537/head
parent
8572c6aee6
commit
531f4483b2
8 changed files with 60 additions and 48 deletions
@ -0,0 +1,27 @@ |
||||
name: release |
||||
on: |
||||
schedule: |
||||
- cron: '0 * * * *' |
||||
workflow_dispatch: |
||||
|
||||
jobs: |
||||
build_masterci: |
||||
name: build master-ci |
||||
runs-on: ubuntu-20.04 |
||||
timeout-minutes: 60 |
||||
if: github.repository == 'commaai/openpilot' |
||||
steps: |
||||
- name: Wait for green check mark |
||||
uses: lewagon/wait-on-check-action@v0.2 |
||||
with: |
||||
ref: master |
||||
wait-interval: 30 |
||||
running-workflow-name: 'build master-ci' |
||||
- uses: actions/checkout@v3 |
||||
with: |
||||
lfs: true |
||||
submodules: true |
||||
fetch-depth: 0 |
||||
- name: Build master-ci |
||||
run: | |
||||
BRANCH=test-master-ci release/build_devel.sh |
@ -1,5 +1,3 @@ |
||||
selfdrive/ui/replay/* |
||||
third_party/mapbox-gl-native-qt/x86_64/*.so |
||||
|
||||
third_party/mapbox-gl-native-qt/x86_64/** |
||||
|
||||
third_party/qt-plugins/x86_64/** |
||||
third_party/qt-plugins/x86_64/geoservices/*.so |
||||
|
Loading…
Reference in new issue