Skip to content

Commit de82932

Browse files
authored
Merge pull request #27 from srivarra/ci/revert-arm-runner
2 parents d725884 + 5bf466a commit de82932

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions:
2020

2121
jobs:
2222
build:
23-
runs-on: ubuntu-24.04-arm
23+
runs-on: ubuntu-latest
2424
strategy:
2525
fail-fast: false
2626
matrix:

.github/workflows/changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919

2020
jobs:
2121
generate-changelog:
22-
runs-on: ubuntu-24.04-arm
22+
runs-on: ubuntu-latest
2323
defaults:
2424
run:
2525
shell: bash -e {0} # -e to fail on error

.github/workflows/release-drafter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# write permission is required for autolabeler
2222
# otherwise, read permission is required at least
2323
pull-requests: write
24-
runs-on: ubuntu-24.04-arm
24+
runs-on: ubuntu-latest
2525
steps:
2626
# Drafts your next Release notes as Pull Requests are merged into "master"
2727
- uses: release-drafter/release-drafter@v6

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
build:
1717
name: Build distribution 📦
18-
runs-on: ubuntu-24.04-arm
18+
runs-on: ubuntu-latest
1919
strategy:
2020
fail-fast: false
2121
matrix:
@@ -57,7 +57,7 @@ jobs:
5757
name: Publish Python 🐍 distribution 📦 to TestPyPI
5858
needs:
5959
- build
60-
runs-on: ubuntu-24.04-arm
60+
runs-on: ubuntu-latest
6161

6262
environment:
6363
name: testpypi
@@ -83,7 +83,7 @@ jobs:
8383
name: >-
8484
Publish Python 🐍 distribution 📦 to PyPI
8585
needs: [build, publish-to-testpypi]
86-
runs-on: ubuntu-24.04-arm
86+
runs-on: ubuntu-latest
8787
environment:
8888
name: pypi
8989
url: https://pypi.org/p/annsel
@@ -107,7 +107,7 @@ jobs:
107107
Sign the Python 🐍 distribution 📦 with Sigstore
108108
and upload them to GitHub Release
109109
needs: [build, publish-to-testpypi, publish-to-pypi]
110-
runs-on: ubuntu-24.04-arm
110+
runs-on: ubuntu-latest
111111

112112
permissions:
113113
contents: write # IMPORTANT: mandatory for making GitHub Releases

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919

2020
jobs:
2121
test:
22-
runs-on: ubuntu-24.04-arm
22+
runs-on: ubuntu-latest
2323
defaults:
2424
run:
2525
shell: bash -e {0} # -e to fail on error

0 commit comments

Comments
 (0)