Skip to content
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

v1.25 #1448

Merged
merged 15 commits into from
May 27, 2024
Merged

v1.25 #1448

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
1 change: 1 addition & 0 deletions .github/workflows/moon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- uses: actions/setup-node@v4
- uses: moonrepo/setup-rust@v1
with:
cache: false # Temporary, CI running out of space
cache-base: '^(master|develop-)'
- run: cargo run -- --color --log trace ci --base ${{ github.base_ref || 'master' }}
env:
Expand Down
23 changes: 12 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
env:
CANARY: ${{ github.event_name == 'push' && contains(github.ref, 'develop-') }}
NIGHTLY: ${{ github.event_name == 'schedule' }}
# CANARY: true

build:
strategy:
Expand Down Expand Up @@ -69,20 +70,20 @@ jobs:
docker-platform: linux/arm64

- target: x86_64-apple-darwin
host: macos-11
host: macos-12
binary: moon
setup: |
export MACOSX_DEPLOYMENT_TARGET="10.13";
# setup: |
# export MACOSX_DEPLOYMENT_TARGET="10.13";

- target: aarch64-apple-darwin
host: macos-11
host: macos-12
binary: moon
setup: |
export CC=$(xcrun -f clang);
export CXX=$(xcrun -f clang++);
export SDKROOT=$(xcrun -sdk macosx --show-sdk-path);
export CFLAGS="-isysroot $SDKROOT -isystem $SDKROOT";
export MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version);
# setup: |
# export CC=$(xcrun -f clang);
# export CXX=$(xcrun -f clang++);
# export SDKROOT=$(xcrun -sdk macosx --show-sdk-path);
# export CFLAGS="-isysroot $SDKROOT -isystem $SDKROOT";
# export MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version);

- target: x86_64-pc-windows-msvc
host: windows-2022
Expand Down Expand Up @@ -168,7 +169,7 @@ jobs:
setup: yarn config set supportedArchitectures.libc "musl"

- target: x86_64-apple-darwin
host: macos-11
host: macos-12

- target: aarch64-apple-darwin
host: macos-14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
with:
auto-install: true
cache: ${{ runner.os == 'Linux' }}
proto-version: '0.34.4' # Keep in sync
proto-version: '0.35.4' # Keep in sync
- uses: mozilla-actions/sccache-action@v0.0.4
if: ${{ vars.ENABLE_SCCACHE == 'true' }}
- name: Checking coverage status
Expand Down
6 changes: 3 additions & 3 deletions .moon/toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
$schema: '../website/static/schemas/toolchain.json'

rust:
version: '1.77.0'
version: '1.78.0'
bins:
- 'cargo-nextest'
syncToolchainConfig: true

node:
version: '20.8.0'
version: '20.13.1'
packageManager: 'yarn'
yarn:
version: '4.1.1'
version: '4.2.2'
addEnginesConstraint: false
inferTasksFromScripts: false

Expand Down
593 changes: 297 additions & 296 deletions .yarn/releases/yarn-4.1.1.cjs → .yarn/releases/yarn-4.2.2.cjs

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions .yarn/versions/d3fb7bae.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
releases:
'@moonrepo/cli': minor
'@moonrepo/core-linux-arm64-gnu': minor
'@moonrepo/core-linux-arm64-musl': minor
'@moonrepo/core-linux-x64-gnu': minor
'@moonrepo/core-linux-x64-musl': minor
'@moonrepo/core-macos-arm64': minor
'@moonrepo/core-macos-x64': minor
'@moonrepo/core-windows-x64-msvc': minor
'@moonrepo/report': patch
'@moonrepo/types': patch

declined:
- '@moonrepo/nx-compat'
- '@moonrepo/runtime'
- website
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ npmScopes:
npmAuthToken: 23F99634-A6B0-4362-BB2B-7163253D741D
npmRegistryServer: "https://npm.fontawesome.com"

yarnPath: .yarn/releases/yarn-4.1.1.cjs
yarnPath: .yarn/releases/yarn-4.2.2.cjs
Loading