fixed depends

pull/12/head
matt 2021-09-23 21:04:08 +01:00
parent 60a2929345
commit 7aef1cde58
No known key found for this signature in database
GPG Key ID: 089C8B076569DD58
1 changed files with 5 additions and 6 deletions

View File

@ -8,9 +8,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build -t aasdk_builder --file Dockerfile .
run: docker build -t aasdk_builder --file buildenv/Dockerfile .
compile:
runs-on: ${{ matrix.host }}
needs: [build-image]
strategy:
fail-fast: false
max-parallel: 3
@ -22,17 +23,15 @@ jobs:
config:
- {
name: "armhf Release",
arch: "armhf",
type: "release"
arch: "armhf"
}
- {
name: "amd64 Release",
arch: "amd64",
type: "release"
arch: "amd64"
}
name: 'Upload release: ${{ matrix.config.name }}'
steps:
-
name: 'Build ${{ matrix.config.arch }} Debian package'
run: docker run -v "${PWD}/release":/${{ matrix.config.type }} aasdk_builder:latest ${{ matrix.config.arch }}
run: docker run -v "${PWD}/release":/release aasdk_builder:latest ${{ matrix.config.arch }}