Skip to content

Commit

Permalink
Checkout Submodules in GHA
Browse files Browse the repository at this point in the history
To fix the same issue as in OpenDDS/OpenDDW#11
  • Loading branch information
iguessthislldo committed Oct 10, 2023
1 parent 2c8a66f commit ce971fa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,30 @@ jobs:
steps:
# Clone git repositories
- name: 'Checkout opendds-monitor'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: 'Checkout MPC'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: DOCGroup/MPC
path: MPC
fetch-depth: 1
- name: 'Checkout ACE_TAO'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: DOCGroup/ACE_TAO
ref: ace6tao2
path: ACE_TAO
fetch-depth: 1
- name: 'Checkout OpenDDS'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: OpenDDS/OpenDDS
ref: ${{ matrix.opendds_branch }}
path: OpenDDS
fetch-depth: 1
submodules: true

# Get 3rd-party Dependencies
- name: 'Install openssl, xerces, qt5, and qwt (Linux)'
Expand Down

0 comments on commit ce971fa

Please sign in to comment.