Skip to content

Commit

Permalink
fix segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Feb 10, 2025
1 parent 17719b0 commit 0c3aa22
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/on_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand All @@ -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]
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0c3aa22

Please sign in to comment.