Skip to content

Commit

Permalink
Clone from github repo and add make defconfig step
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckenzie committed May 22, 2020
1 parent a4c46b1 commit 3d23a16
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,9 @@ jobs:

- script: |
umask 0022
git clone https://git.openwrt.org/openwrt/openwrt.git
git clone https://github.com/openwrt/openwrt.git
displayName: 'Clone OpenWrt git repo'
- script: |
cp .config openwrt/
displayName: 'Copy .config file'
- script: git checkout $(release)
workingDirectory: $(workingDirectory)
displayName: 'Checkout $(release)'
Expand All @@ -37,6 +33,14 @@ jobs:
- script: |
make defconfig
workingDirectory: $(workingDirectory)
displayName: 'Make defconfig'
- script: |
cp .config $(workingDirectory)
displayName: 'Copy .config file'
- script: |
make
workingDirectory: $(workingDirectory)
displayName: 'Build the project'
Expand Down

0 comments on commit 3d23a16

Please sign in to comment.