Skip to content

Commit

Permalink
CI checkout submodules before building.
Browse files Browse the repository at this point in the history
  • Loading branch information
furby-tm committed Aug 3, 2024
1 parent 56a14c7 commit 4f2c322
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/swift-debug-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ jobs:
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: 🗃️ Checkout Submodules
run: git submodule update --init --recursive
- name: 🧪 Test
run: swift test
2 changes: 2 additions & 0 deletions .github/workflows/swift-debug-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
run: sudo apt install libboost-all-dev
- name: 🖥️ Install X11
run: sudo apt install libxcursor-dev libxt-dev libxi-dev libxinerama-dev libxrandr-dev
- name: 🗃️ Checkout Submodules
run: git submodule update --init --recursive
- name: 🧪 Test
run: |
echo "### Disabled Tests" >> $GITHUB_STEP_SUMMARY
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/swift-debug-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ jobs:
branch: swift-5.10-release
tag: 5.10-RELEASE
- uses: actions/checkout@v4
- name: 🗃️ Checkout Submodules
run: git submodule update --init --recursive
- name: 📦 Build
run: swift build -c release --target MetaversalDemo
2 changes: 2 additions & 0 deletions .github/workflows/swift-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ jobs:
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: 🗃️ Checkout Submodules
run: git submodule update --init --recursive
- name: 📦 Build
run: swift build -c release --target MetaversalDemo
2 changes: 2 additions & 0 deletions .github/workflows/swift-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ jobs:
run: sudo apt install libboost-all-dev
- name: 🖥️ Install X11
run: sudo apt install libxcursor-dev libxt-dev libxi-dev libxinerama-dev libxrandr-dev
- name: 🗃️ Checkout Submodules
run: git submodule update --init --recursive
- name: 📦 Build
run: swift build -c release --target MetaversalDemo
2 changes: 2 additions & 0 deletions .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
run: sudo apt install libboost-all-dev
- name: 🖥️ Install X11
run: sudo apt install libxcursor-dev libxt-dev libxi-dev libxinerama-dev libxrandr-dev
- name: 🗃️ Checkout Submodules
run: git submodule update --init --recursive
- name: Compile Docs
run: |
set -eux
Expand Down

0 comments on commit 4f2c322

Please sign in to comment.