Skip to content

Commit

Permalink
Point to a windows-xlarge GHA runner since the build on windows-large…
Browse files Browse the repository at this point in the history
… timed out after 600 minutes
  • Loading branch information
callumprentice committed Nov 12, 2024
1 parent 4cf57d6 commit e9d5a3a
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: Build
on: [push]
jobs:
build:
strategy:
matrix:
os: [windows-large]
addrsize: ["64"]
include:
- os: macos
tag: self-hosted
addrsize: "64"
continue-on-error: true
runs-on: ${{ matrix.os }}
timeout-minutes: 900
steps:
- uses: secondlife/action-autobuild@v4
with:
addrsize: ${{ matrix.addrsize }}
release:
needs: build
runs-on: [ubuntu-latest]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: secondlife/action-autobuild-release@v3
build:
strategy:
matrix:
os: [windows-xlarge]
addrsize: ['64']
include:
- os: macos
tag: self-hosted
addrsize: '64'
continue-on-error: true
runs-on: ${{ matrix.os }}
timeout-minutes: 900
steps:
- uses: secondlife/action-autobuild@v4
with:
addrsize: ${{ matrix.addrsize }}
release:
needs: build
runs-on: [ubuntu-latest]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: secondlife/action-autobuild-release@v3

0 comments on commit e9d5a3a

Please sign in to comment.