Skip to content

Commit 0eeb89c

Browse files
authored
[chore]: CI - Use self-hosted runner (#111)
- Use the self hosted Mac mini runner for CI/CD
2 parents c3eb00c + 4b26d15 commit 0eeb89c

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines 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/action-swiftlint@3.2.1
24-
with:
25-
args: --strict
23+
run: swiftlint --strict
24+
# uses: norio-nomura/action-swiftlint@3.2.1
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-text-view-tests:
1414
name: Testing CodeEditTextView
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)