Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
hygiene:
name: Repo hygiene guard
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand All @@ -27,6 +28,7 @@ jobs:
build-and-test:
name: Build & Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -75,6 +77,7 @@ jobs:
gui:
name: GUI checks
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down Expand Up @@ -108,7 +111,14 @@ jobs:
# installs more, but those are the bundler's (icons, AppImage) and this job only
# compiles.
- name: Install GUI build dependencies
timeout-minutes: 6
run: |
# The runner image points apt at an Azure mirror that intermittently
# black-holes connections. apt then retries every repository for two
# minutes apiece: one run spent 36 minutes here before it was cancelled.
# Fail over to the next mirror in seconds instead.
printf 'Acquire::Retries "2";\nAcquire::http::Timeout "15";\nAcquire::https::Timeout "15";\n' \
| sudo tee /etc/apt/apt.conf.d/99-omnyssh-ci-timeouts > /dev/null
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libgtk-3-dev

Expand Down Expand Up @@ -138,6 +148,7 @@ jobs:
tui-build-independence:
name: TUI builds without the GUI toolchain
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,14 @@ jobs:
# itself; gcc-aarch64-linux-gnu only supplies the ELF linker.
- name: Install aarch64 cross linker
if: matrix.target == 'aarch64-unknown-linux-musl'
timeout-minutes: 6
run: |
# The runner image points apt at an Azure mirror that intermittently
# black-holes connections. apt then retries every repository for two
# minutes apiece: one run spent 36 minutes here before it was cancelled.
# Fail over to the next mirror in seconds instead.
printf 'Acquire::Retries "2";\nAcquire::http::Timeout "15";\nAcquire::https::Timeout "15";\n' \
| sudo tee /etc/apt/apt.conf.d/99-omnyssh-ci-timeouts > /dev/null
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu

Expand Down Expand Up @@ -222,7 +229,14 @@ jobs:
# the AppImage). Only Linux needs them; macOS/Windows use system webviews.
- name: Install Linux bundle dependencies
if: runner.os == 'Linux'
timeout-minutes: 6
run: |
# The runner image points apt at an Azure mirror that intermittently
# black-holes connections. apt then retries every repository for two
# minutes apiece: one run spent 36 minutes here before it was cancelled.
# Fail over to the next mirror in seconds instead.
printf 'Acquire::Retries "2";\nAcquire::http::Timeout "15";\nAcquire::https::Timeout "15";\n' \
| sudo tee /etc/apt/apt.conf.d/99-omnyssh-ci-timeouts > /dev/null
sudo apt-get update
sudo apt-get install -y \
libwebkit2gtk-4.1-dev libgtk-3-dev librsvg2-dev \
Expand Down
Loading