-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17719b0
commit 0c3aa22
Showing
2 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
if: | | ||
github.event_name == 'workflow_dispatch' && | ||
github.event.inputs.reason != '' | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Log dispatch reason | ||
env: | ||
|
@@ -49,7 +49,7 @@ jobs: | |
binary_build_armv7: | ||
name: Build Binary - armv7 | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
# needs: test_rust_functionality | ||
|
||
steps: | ||
|
@@ -89,7 +89,7 @@ jobs: | |
|
||
binary_build_arm64: | ||
name: Build Binary - arm64 | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
# needs: test_rust_functionality | ||
|
||
steps: | ||
|
@@ -129,7 +129,7 @@ jobs: | |
|
||
binary_build_amd64: | ||
name: Build Binary - amd64 | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
# needs: test_rust_functionality | ||
|
||
steps: | ||
|
@@ -169,7 +169,7 @@ jobs: | |
|
||
consolidate_binaries: | ||
name: Consolidate & Cache Binaries | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: [binary_build_amd64, binary_build_arm64, binary_build_armv7] | ||
steps: | ||
- run: mkdir -p ./bin | ||
|
@@ -210,7 +210,7 @@ jobs: | |
binary_build_armv7, | ||
consolidate_binaries, | ||
] | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ on: | |
jobs: | ||
check: | ||
name: Check | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions-rs/[email protected] | ||
|
@@ -35,7 +35,7 @@ jobs: | |
|
||
fmt: | ||
name: Rustfmt | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions-rs/[email protected] | ||
|
@@ -51,7 +51,7 @@ jobs: | |
|
||
clippy: | ||
name: Clippy | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions-rs/[email protected] | ||
|
@@ -67,7 +67,7 @@ jobs: | |
|
||
hadolint: | ||
name: "Linting: hadolint" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Pull hadolint/hadolint:latest Image | ||
|
@@ -77,7 +77,7 @@ jobs: | |
|
||
test_rust_functionality: | ||
name: Build and test rust functionality | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -106,7 +106,7 @@ jobs: | |
binary_build_armv7: | ||
name: Build Binary - armv7 | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
# needs: test_rust_functionality | ||
|
||
steps: | ||
|
@@ -146,7 +146,7 @@ jobs: | |
|
||
binary_build_arm64: | ||
name: Build Binary - arm64 | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
# needs: test_rust_functionality | ||
|
||
steps: | ||
|
@@ -186,7 +186,7 @@ jobs: | |
|
||
binary_build_amd64: | ||
name: Build Binary - amd64 | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: test_rust_functionality | ||
|
||
steps: | ||
|
@@ -226,7 +226,7 @@ jobs: | |
|
||
consolidate_binaries: | ||
name: Consolidate & Cache Binaries | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: [binary_build_amd64, binary_build_arm64, binary_build_armv7] | ||
steps: | ||
- run: mkdir -p ./bin | ||
|