Skip to content

Commit

Permalink
ci: fix runner tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Wójcik committed Dec 19, 2023
1 parent 178fbca commit 08d8e59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
rustdoc:
runs-on: self-hosted
runs-on: [self-hosted, Linux]
container:
image: rust:1.74

Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,28 @@ jobs:
build-release:
name: Release ${{ matrix.build }}
needs: ['create-release']
runs-on: ${{ matrix.os }}
runs-on:
- self-hosted
- ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
build: [linux, linux-arm, linux-arm64, freebsd]
include:
- build: linux
os: self-hosted
os: Linux
asset_name: defguard-gateway-linux-x86_64
target: x86_64-unknown-linux-gnu
- build: linux-arm
os: self-hosted
os: Linux
asset_name: defguard-gateway-linux-armv7
target: armv7-unknown-linux-gnueabihf
- build: linux-arm64
os: self-hosted
os: Linux
asset_name: defguard-gateway-linux-arm64
target: aarch64-unknown-linux-gnu
- build: freebsd
os: self-hosted
os: Linux
asset_name: defguard-gateway-freebsd-x86_64
target: x86_64-unknown-freebsd
steps:
Expand Down

0 comments on commit 08d8e59

Please sign in to comment.