Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 30 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -567,17 +567,30 @@ jobs:
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v4
with:
submodules: recursive
persist-credentials: false

- name: Check out source code (pull request)
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: recursive
persist-credentials: false

- name: Check out submodules
run: |
git config --global --add safe.directory '*'
git submodule init
git submodule update --depth=1 --recursive crosskit/crosskit-x86_64-apple-darwin
git submodule update --depth=1 --recursive crosskit/crosskit-x86_64-darwin-libpython
git submodule update --depth=1 --recursive crosskit/crosskit-mingw-w64-libpython
git submodule update --depth=1 --recursive crosstool-ng
git submodule update --depth=1 --recursive binutils
git submodule update --depth=1 --recursive binutils_arc
git submodule update --depth=1 --recursive gdb
git submodule update --depth=1 --recursive gcc
git submodule update --depth=1 --recursive gcc_arc
git submodule update --depth=1 --recursive picolibc

- name: Build crosstool-ng
run: |
# Configure macOS build environment
Expand Down Expand Up @@ -885,17 +898,22 @@ jobs:
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v4
with:
submodules: recursive
persist-credentials: false

- name: Check out source code (pull request)
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: recursive
persist-credentials: false

- name: Check out submodules
run: |
git config --global --add safe.directory '*'
git submodule init
git submodule update --depth=1 --recursive llvm
git submodule update --depth=1 --recursive picolibc

- name: Setup debug session (pre)
if: always() && needs.setup.outputs.debug == 'toolchain-pre'
uses: mxschmitt/action-tmate@v3
Expand Down Expand Up @@ -1021,17 +1039,23 @@ jobs:
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v4
with:
submodules: recursive
persist-credentials: false

- name: Check out source code (pull request)
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: recursive
persist-credentials: false

- name: Check out submodules
run: |
git config --global --add safe.directory '*'
git submodule init
git submodule update --depth=1 --recursive qemu
git submodule update --depth=1 --recursive qemu_arc
git submodule update --depth=1 --recursive qemu_xilinx

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down
Loading