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 1d92f4f
Show file tree
Hide file tree
Showing 2 changed files with 13 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
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ configuration:
- Release
before_build:
- cmd: |-
git submodule update --init --recursive
mkdir build
cd build
cmake .. -G "Visual Studio 17 2022"
Expand Down

0 comments on commit 1d92f4f

Please sign in to comment.