Reenable branch checks.
This commit is contained in:
parent
2e947efc64
commit
cdb799c59f
|
@ -17,7 +17,6 @@ env:
|
||||||
# Multiple job to tests
|
# Multiple job to tests
|
||||||
jobs:
|
jobs:
|
||||||
change_detect:
|
change_detect:
|
||||||
if: false
|
|
||||||
name: "Detect code changes"
|
name: "Detect code changes"
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
outputs:
|
outputs:
|
||||||
|
@ -40,7 +39,7 @@ jobs:
|
||||||
# Test the compilation compatibility
|
# Test the compilation compatibility
|
||||||
linux_build:
|
linux_build:
|
||||||
needs: change_detect
|
needs: change_detect
|
||||||
if: true #${{ fromJSON(needs.change_detect.outputs.source_modified) || github.ref == 'refs/heads/master' }}
|
if: ${{ fromJSON(needs.change_detect.outputs.source_modified) || github.ref == 'refs/heads/master' }}
|
||||||
name: ${{ matrix.config.name }}
|
name: ${{ matrix.config.name }}
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container: ghcr.io/lnis-uofu/openfpga-build-${{ matrix.config.cc}}
|
container: ghcr.io/lnis-uofu/openfpga-build-${{ matrix.config.cc}}
|
||||||
|
@ -158,7 +157,7 @@ jobs:
|
||||||
yosys/yosys-smtbmc
|
yosys/yosys-smtbmc
|
||||||
docker_distribution:
|
docker_distribution:
|
||||||
name: Build docker image for distribution
|
name: Build docker image for distribution
|
||||||
if: true #${{ github.ref == 'refs/heads/master' }}
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: linux_build
|
needs: linux_build
|
||||||
steps:
|
steps:
|
||||||
|
@ -229,7 +228,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
OPENFPGA_PATH: /__w/OpenFPGA/OpenFPGA
|
OPENFPGA_PATH: /__w/OpenFPGA/OpenFPGA
|
||||||
needs: change_detect
|
needs: change_detect
|
||||||
if: false #${{ !fromJSON(needs.change_detect.outputs.source_modified) }}
|
if: ${{ !fromJSON(needs.change_detect.outputs.source_modified) }}
|
||||||
name: Regression tests against master artifacts
|
name: Regression tests against master artifacts
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container: ghcr.io/lnis-uofu/openfpga-master:latest
|
container: ghcr.io/lnis-uofu/openfpga-master:latest
|
||||||
|
|
Loading…
Reference in New Issue