Skip to content

Revert Ubuntu Arm runner to x86_64 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions:

jobs:
build:
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:

jobs:
generate-changelog:
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
defaults:
run:
shell: bash -e {0} # -e to fail on error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
name: Publish Python 🐍 distribution 📦 to TestPyPI
needs:
- build
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest

environment:
name: testpypi
Expand All @@ -83,7 +83,7 @@ jobs:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
needs: [build, publish-to-testpypi]
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/annsel
Expand All @@ -107,7 +107,7 @@ jobs:
Sign the Python 🐍 distribution 📦 with Sigstore
and upload them to GitHub Release
needs: [build, publish-to-testpypi, publish-to-pypi]
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest

permissions:
contents: write # IMPORTANT: mandatory for making GitHub Releases
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:

jobs:
test:
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
defaults:
run:
shell: bash -e {0} # -e to fail on error
Expand Down
Loading