fix(reflect): harden MakeFunc and method values on ctx-reg #3644
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docs | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| - "!dependabot/**" | |
| - "!xgopilot/**" | |
| pull_request: | |
| branches: ["**"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| remote_install: | |
| continue-on-error: true | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: ./.github/actions/setup-go | |
| with: | |
| go-version: "1.24.2" | |
| - name: Install dependencies on macOS | |
| if: startsWith(matrix.os, 'macos') | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/install_macos.sh | |
| - name: Install dependencies on Ubuntu | |
| if: startsWith(matrix.os, 'ubuntu') | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/install_ubuntu.sh | |
| - name: Test doc code blocks | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/run.sh | |
| local_install: | |
| continue-on-error: true | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.23" | |
| - name: Install dependencies on macOS | |
| if: startsWith(matrix.os, 'macos') | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/install_macos.sh | |
| - name: Install dependencies on Ubuntu | |
| if: startsWith(matrix.os, 'ubuntu') | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/install_ubuntu.sh | |
| - name: Install llgo with tools | |
| run: | | |
| set -e | |
| set -x | |
| git() { | |
| if [ "$1" = "clone" ]; then | |
| # do nothing because we already have the branch | |
| cd .. | |
| else | |
| command git "$@" | |
| fi | |
| } | |
| source doc/_readme/scripts/install_llgo.sh | |
| echo "LLGO_ROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV | |
| - name: Test doc code blocks | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/run.sh | |
| local_install_full: | |
| continue-on-error: true | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.23" | |
| - name: Install dependencies on macOS | |
| if: startsWith(matrix.os, 'macos') | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/install_macos.sh | |
| - name: Install dependencies on Ubuntu | |
| if: startsWith(matrix.os, 'ubuntu') | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/install_ubuntu.sh | |
| echo "PATH=/usr/lib/llvm-19/bin:$PATH" >> $GITHUB_ENV | |
| - name: Install llgo with tools | |
| run: | | |
| set -e | |
| set -x | |
| git() { | |
| if [ "$1" = "clone" ]; then | |
| # do nothing because we already have the branch | |
| cd .. | |
| else | |
| command git "$@" | |
| fi | |
| } | |
| source doc/_readme/scripts/install_full.sh | |
| echo "LLGO_ROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV | |
| - name: Test doc code blocks | |
| run: | | |
| set -e | |
| set -x | |
| source doc/_readme/scripts/run.sh |