Skip to content

Commit a9e252d

Browse files
authored
Update main.yml
1 parent c199d5e commit a9e252d

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949

5050
# Run our CI/CD builds.
5151
build:
52+
needs: [build_containers]
5253
strategy:
5354
matrix:
5455
platform:
@@ -69,9 +70,11 @@ jobs:
6970
name: Build
7071
runs-on: ${{ matrix.platform.os }}
7172
steps:
72-
- run: echo ${{ matrix.platform.os }} ${{matrix.platform.image}}
73-
- run: |
74-
mkdir build && cd build
75-
../azure-pipelines/build.sh
76-
../azure-pipelines/test.sh
73+
- name: Check out repository
74+
uses: actions/checkout@v2
75+
- run: echo ${{ matrix.platform.os }} ${{matrix.platform.image}}
76+
- run: |
77+
mkdir build && cd build
78+
../azure-pipelines/build.sh
79+
../azure-pipelines/test.sh
7780
shell: bash

0 commit comments

Comments
 (0)