mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 14:40:12 +03:00
Allow failure on FreeBSD jobs (#20752)
This commit is contained in:
parent
12c1363f86
commit
080a4d840f
1 changed files with 5 additions and 1 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -181,13 +181,14 @@ jobs:
|
||||||
host_dmd: dmd-2.095.0
|
host_dmd: dmd-2.095.0
|
||||||
name: ${{ matrix.job_name }}
|
name: ${{ matrix.job_name }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 60
|
timeout-minutes: 15 # Should complete in 11 minutes
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 50
|
fetch-depth: 50
|
||||||
- name: Run in VM
|
- name: Run in VM
|
||||||
uses: cross-platform-actions/action@v0.23.0
|
uses: cross-platform-actions/action@v0.23.0
|
||||||
|
timeout-minutes: 14
|
||||||
with:
|
with:
|
||||||
operating_system: freebsd
|
operating_system: freebsd
|
||||||
hypervisor: qemu
|
hypervisor: qemu
|
||||||
|
@ -257,3 +258,6 @@ jobs:
|
||||||
echo '::group::Test self-compile'
|
echo '::group::Test self-compile'
|
||||||
ENABLE_RELEASE=0 ci/run.sh rebuild
|
ENABLE_RELEASE=0 ci/run.sh rebuild
|
||||||
echo '::endgroup::'
|
echo '::endgroup::'
|
||||||
|
- name: Backup
|
||||||
|
if: ${{ failure() }}
|
||||||
|
run: echo 'FreeBSD VM check made optional because of random time outs'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue