mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-04 10:45:50 +00:00
27 lines
595 B
YAML
27 lines
595 B
YAML
name: Build using Docker
|
|
|
|
on:
|
|
push:
|
|
branches: [ "dev", "candidate", "release" ]
|
|
pull_request:
|
|
branches: [ "dev", "candidate", "release" ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
builder:
|
|
runs-on: [self-hosted, vanity]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
# with:
|
|
# clean: false
|
|
- name: Check for suspicious patterns
|
|
run: /bin/bash suspicious_patterns.sh
|
|
- name: Build using Docker
|
|
run: /bin/bash release-builder.sh
|
|
- name: Unit tests
|
|
run: /bin/bash docker-unit-tests.sh
|
|
|