Skip to content

Commit

Permalink
checkout submodules: true
Browse files Browse the repository at this point in the history
  • Loading branch information
nafraf committed Oct 5, 2023
1 parent cac7754 commit 2e654a6
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/mariner2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,30 @@ on:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l -o pipefail {0}
container:
image: mcr.microsoft.com/cbl-mariner/base/core:2.0
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
submodules: true
- run: |
git config --global --add safe.directory '*'
git submodule update --init --recursive
- name: install dependencies
run: .install/mariner2.sh
run: |
.install/mariner2.sh
- name: get redis latest
run: .install/get_redis.sh
run: |
.install/get_redis.sh
- name: build and test
run: make test
run: |
make test
- name: pack module
run: make pack
run: |
make pack
# todo: upload artifacts to S3

0 comments on commit 2e654a6

Please sign in to comment.