Skip to content

Commit

Permalink
Remove scheduled workflows, macos14
Browse files Browse the repository at this point in the history
  • Loading branch information
armallen committed Apr 15, 2024
1 parent 083264f commit 3bd30ab
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cross: true
- os: 'ubuntu-22.04'
triple: 'x86_64-unknown-linux-musl'
- os: 'macos-12'
- os: 'macos-14'
triple: 'aarch64-apple-darwin'
- os: 'macos-12'
triple: 'x86_64-apple-darwin'
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
shell: bash
run: |
if [ "${{ matrix.target.triple }}" = "aarch64-apple-darwin" ]; then
export MACOSX_DEPLOYMENT_TARGET=11.0
export MACOSX_DEPLOYMENT_TARGET=14.0
elif [ "${{ matrix.target.triple }}" = "x86_64-apple-darwin" ]; then
export MACOSX_DEPLOYMENT_TARGET=10.9
fi
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
macos-universal:
needs:
- build
runs-on: 'macos-12'
runs-on: 'macos-14'
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/cargo_deny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
pyembed:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/oxidized_importer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
wheel_linux:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pyoxidizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
pyoxidizer-exes:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pyoxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
pyoxidizer-linux:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
sphinx:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/workspace-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
test:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
build-and-test:
Expand Down
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exe_suffix := if os() == "windows" { ".exe" } else { "" }

macosx_deployment_target := if os() == "macos" {
if arch() == "arm" {
"11.0"
"14.0"
} else {
"10.9"
}
Expand Down Expand Up @@ -272,7 +272,7 @@ pyoxy-release-prepare commit tag:
rm -rf dist/pyoxy*
just assemble-exe-artifacts pyoxy {{commit}} dist/pyoxy-artifacts

for py in 3.8 3.9 3.10; do
for py in 3.10 3.11 3.12; do
for triple in aarch64-apple-darwin x86_64-apple-darwin x86_64-unknown-linux-gnu macos-universal; do
release_name=pyoxy-{{tag}}-${triple}-cpython${py}
source=dist/pyoxy-artifacts/exe-pyoxy-${triple}-${py}
Expand Down

0 comments on commit 3bd30ab

Please sign in to comment.