Skip to content

Commit

Permalink
Merge branch 'Xahau:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
WietseWind authored May 30, 2024
2 parents 7caee5c + 849a443 commit cf70cc8
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/build-in-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,37 @@ name: Build using Docker

on:
push:
branches: [ "dev", "candidate", "release" ]
branches: [ "dev", "candidate", "release", "jshooks" ]
pull_request:
branches: [ "dev", "candidate", "release" ]
branches: [ "dev", "candidate", "release", "jshooks" ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
group: ${{ github.workflow }}
cancel-in-progress: false

jobs:
builder:
checkout:
runs-on: [self-hosted, vanity]
steps:
- uses: actions/checkout@v3
with:
clean: false
checkpatterns:
runs-on: [self-hosted, vanity]
needs: checkout
steps:
- name: Check for suspicious patterns
run: /bin/bash suspicious_patterns.sh
build:
runs-on: [self-hosted, vanity]
needs: checkpatterns
steps:
- name: Build using Docker
run: /bin/bash release-builder.sh
tests:
runs-on: [self-hosted, vanity]
needs: build
steps:
- name: Unit tests
run: /bin/bash docker-unit-tests.sh

0 comments on commit cf70cc8

Please sign in to comment.