build(deps): bump github.com/goplus/llgo from 0.11.6-0.20250824004317-e4218f90d792 to 0.11.8 #2913
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
| # This workflow will build a golang project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
| name: Go | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| llvm: [19] | |
| llgo: [e4218f90d7926d31c1ffae3965a4e36228d38fd2] | |
| go: [1.23] | |
| fail-fast: false | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup llcppg environment | |
| uses: ./.github/actions/setup-llcppg | |
| with: | |
| go: ${{ matrix.go }} | |
| llvm: ${{ matrix.llvm }} | |
| llgo: ${{ matrix.llgo }} | |
| - name: Setup Test Dependencies | |
| if: startsWith(matrix.os, 'macos') | |
| run: brew install cjson | |
| - name: Setup Test Dependencies | |
| if: startsWith(matrix.os, 'ubuntu') | |
| run: sudo apt install libcjson-dev | |
| # only can compile with llgo | |
| - name: Test xtool | |
| run: | | |
| llgo test ./_xtool/internal/... | |
| # only can compile with llgo | |
| - name: Test llcppsymg & llcppsigfetch | |
| run: | | |
| llgo test ./_xtool/llcppsigfetch/internal/... | |
| llgo test ./_xtool/llcppsymg/internal/... | |
| - name: Test For LLGo and Go | |
| run: | | |
| llgo test ./config | |
| llgo test ./internal/arg | |
| llgo test ./internal/name | |
| - name: Test | |
| if: ${{!startsWith(matrix.os, 'macos')}} | |
| run: go test -v ./... | |
| - name: Test with coverage | |
| if: startsWith(matrix.os, 'macos') | |
| run: go test -v -coverprofile="coverage.txt" -covermode=atomic ./... | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| slug: goplus/llcppg | |
| - name: Test demos | |
| run: bash .github/workflows/test_demo.sh |