Add git and git-lfs by default to toolchain (#44) #92
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 | |
| on: | |
| push: | |
| branches: | |
| - v1.x | |
| - v2.x | |
| - v3.x | |
| - v4.x | |
| jobs: | |
| stage1: | |
| name: Stage 1 | |
| if: ${{ !contains(github.event.head_commit.message, '[no stage1]') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the Git repository | |
| uses: actions/checkout@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push toolchain | |
| run: ./scripts/build -p -g -s toolchain | |
| stage2: | |
| name: Stage 2 | |
| if: ${{ !contains(github.event.head_commit.message, '[no stage2]') && !failure() && !cancelled() }} | |
| runs-on: ubuntu-latest | |
| needs: stage1 | |
| steps: | |
| - name: Checkout the Git repository | |
| uses: actions/checkout@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push toolchain | |
| run: ./scripts/build -p -g -s base | |
| stage3: | |
| name: Stage 3 | |
| if: ${{ !contains(github.event.head_commit.message, '[no stage3]') && !failure() && !cancelled() }} | |
| runs-on: ubuntu-latest | |
| needs: stage2 | |
| strategy: | |
| matrix: | |
| target: [golang, python, qt, rust, dotnet6] | |
| steps: | |
| - name: Checkout the Git repository | |
| uses: actions/checkout@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push toolchain | |
| run: ./scripts/build -p -g -s ${{ matrix.target }} |