summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-06-06 22:23:19 +0100
committerGitHub <noreply@github.com>2020-06-06 22:23:19 +0100
commita9e252d4dc3308285ec8aa8824b478b89f1f2f70 (patch)
tree6172cfcfd44af39e7f5af5df8b65c26997ec7c3b
parentc199d5e80cd8a1bd9a3da920371007bc24669929 (diff)
downloadlibgit2-a9e252d4dc3308285ec8aa8824b478b89f1f2f70.tar.gz
Update main.yml
-rw-r--r--.github/workflows/main.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index cd7a61522..6a1b581e7 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -49,6 +49,7 @@ jobs:
# Run our CI/CD builds.
build:
+ needs: [build_containers]
strategy:
matrix:
platform:
@@ -69,9 +70,11 @@ jobs:
name: Build
runs-on: ${{ matrix.platform.os }}
steps:
- - run: echo ${{ matrix.platform.os }} ${{matrix.platform.image}}
- - run: |
- mkdir build && cd build
- ../azure-pipelines/build.sh
- ../azure-pipelines/test.sh
+ - name: Check out repository
+ uses: actions/checkout@v2
+ - run: echo ${{ matrix.platform.os }} ${{matrix.platform.image}}
+ - run: |
+ mkdir build && cd build
+ ../azure-pipelines/build.sh
+ ../azure-pipelines/test.sh
shell: bash