Skip to content

Commit 2a33330

Browse files
author
Lukas Pistrol
authored
Merge pull request #11 from lukepistrol/chore/self-hosted-runner
[chore]: Use self-hosted runner
2 parents 0025bd3 + 292e810 commit 2a33330

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/scripts/tests.sh

100644100755
File mode changed.

.github/workflows/build-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99
jobs:
1010
build-docc:
11-
runs-on: macos-12
11+
runs-on: [self-hosted, macOS]
1212
steps:
1313
- name: Checkout repository
1414
uses: actions/checkout@v1

.github/workflows/swiftlint.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ on:
1616
- '**/*.swift'
1717
jobs:
1818
SwiftLint:
19-
runs-on: ubuntu-latest
19+
runs-on: [self-hosted, macOS]
2020
steps:
2121
- uses: actions/checkout@v1
2222
- name: GitHub Action for SwiftLint with --strict
23-
uses: norio-nomura/[email protected]
24-
with:
25-
args: --strict
23+
run: swiftlint --strict
24+
# uses: norio-nomura/[email protected]
25+
# with:
26+
# args: --strict

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ on:
1212
jobs:
1313
code-edit-kit-tests:
1414
name: Testing CodeEditKit
15-
runs-on: macos-12
15+
runs-on: [self-hosted, macOS]
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v1
19-
- name: Make executeable
20-
run: chmod +x ./.github/scripts/tests.sh
2119
- name: Testing Package
22-
run: exec ./.github/scripts/tests.sh
20+
run: exec ./.github/scripts/tests.sh arm

0 commit comments

Comments
 (0)