Skip to content

Commit

Permalink
Fix CI by checking out submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
rapperskull committed Feb 28, 2024
1 parent 2334785 commit 3b904ec
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
artifact_os: Win64
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: CMake generate
run: |
mkdir build && cd build
Expand All @@ -65,6 +67,8 @@ jobs:
needs: Init
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: CMake generate
run: |
mkdir build && cd build
Expand All @@ -86,6 +90,8 @@ jobs:
needs: Init
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: CMake generate
run: |
mkdir build && cd build
Expand All @@ -109,6 +115,8 @@ jobs:
SYSROOT_PATH: /opt/cross-freebsd-13
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: FreeBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
Expand Down Expand Up @@ -141,6 +149,8 @@ jobs:
SYSROOT_PATH: /opt/cross-openbsd-7
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: OpenBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
Expand Down Expand Up @@ -173,6 +183,8 @@ jobs:
SYSROOT_PATH: /opt/cross-netbsd-9
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: NetBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
Expand Down

0 comments on commit 3b904ec

Please sign in to comment.