Skip to content

Commit

Permalink
Add more build steps (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nifury authored Oct 10, 2022
1 parent b400acf commit ec7903d
Showing 1 changed file with 87 additions and 1 deletion.
88 changes: 87 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,48 @@ jobs:
from_artifact: true
outputs:
finished: ${{ steps.stage.outputs.finished }}
build-7:
needs: build-6
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Init
run: Copy-Item -Path . -Destination "C:\ungoogled-chromium-windows" -Recurse
- name: Setup Stage
run: npm install
working-directory: ./.github/actions/stage
- name: Run Stage
id: stage
uses: ./.github/actions/stage
with:
finished: ${{ join(needs.*.outputs.finished) }}
from_artifact: true
outputs:
finished: ${{ steps.stage.outputs.finished }}
build-8:
needs: build-7
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Init
run: Copy-Item -Path . -Destination "C:\ungoogled-chromium-windows" -Recurse
- name: Setup Stage
run: npm install
working-directory: ./.github/actions/stage
- name: Run Stage
id: stage
uses: ./.github/actions/stage
with:
finished: ${{ join(needs.*.outputs.finished) }}
from_artifact: true
outputs:
finished: ${{ steps.stage.outputs.finished }}

build-x86-1:
runs-on: windows-2019
Expand Down Expand Up @@ -261,8 +303,52 @@ jobs:
x86: true
outputs:
finished: ${{ steps.stage.outputs.finished }}
build-x86-7:
needs: build-x86-6
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Init
run: Copy-Item -Path . -Destination "C:\ungoogled-chromium-windows" -Recurse
- name: Setup Stage
run: npm install
working-directory: ./.github/actions/stage
- name: Run Stage
id: stage
uses: ./.github/actions/stage
with:
finished: ${{ join(needs.*.outputs.finished) }}
from_artifact: true
x86: true
outputs:
finished: ${{ steps.stage.outputs.finished }}
build-x86-8:
needs: build-x86-7
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Init
run: Copy-Item -Path . -Destination "C:\ungoogled-chromium-windows" -Recurse
- name: Setup Stage
run: npm install
working-directory: ./.github/actions/stage
- name: Run Stage
id: stage
uses: ./.github/actions/stage
with:
finished: ${{ join(needs.*.outputs.finished) }}
from_artifact: true
x86: true
outputs:
finished: ${{ steps.stage.outputs.finished }}
publish-release:
needs: [build-6, build-x86-6]
needs: [build-8, build-x86-8]
runs-on: ubuntu-latest
steps:
- name: Download package
Expand Down

0 comments on commit ec7903d

Please sign in to comment.