[ci] avoid to use docker image for build compatibility now
This commit is contained in:
parent
eda989dda2
commit
3bc2fa75c2
|
@ -69,7 +69,8 @@ jobs:
|
||||||
name: ${{ matrix.config.name }}
|
name: ${{ matrix.config.name }}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
# Note: dependencies are installed in the container. See details about dependency list in docker/Dockerfile.master
|
# Note: dependencies are installed in the container. See details about dependency list in docker/Dockerfile.master
|
||||||
container: ghcr.io/${{ needs.change_detect.outputs.docker_repo }}/openfpga-build-${{ matrix.config.cc}}
|
# Comment the line out when base image is built again
|
||||||
|
#container: ghcr.io/${{ needs.change_detect.outputs.docker_repo }}/openfpga-build-${{ matrix.config.cc}}
|
||||||
# Branch on different OS and settings
|
# Branch on different OS and settings
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -116,6 +117,9 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: ./.github/workflows/install_dependencies_build.sh
|
||||||
|
|
||||||
- name: Dump tool versions
|
- name: Dump tool versions
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue