Don't build the embedded stdlib or copy the trunk SwiftBridging header on Android CI #299
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: Build Docker images | |
| permissions: | |
| contents: read | |
| on: [pull_request] | |
| env: | |
| ghprbPullId: ${{ github.event.number }} | |
| ghprbGhRepository: ${{ github.repository_owner }}/${{ github.event.repository.name }} | |
| jobs: | |
| build: | |
| name: Build Docker images | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build Docker images | |
| run: ./ci_test.py | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: docker-logs | |
| path: | | |
| *.log |