summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRicardo Valero de la Rosa <[email protected]>2026-01-15 15:45:03 -0600
committerGitHub <[email protected]>2026-01-15 15:45:03 -0600
commit9862303eedff320ebe632602b6728037feb44371 (patch)
tree9c5075b5756a2d4dff061976d6ba3c3c524fb0ca
parentb14622352e542147e5864ff3b6b092b6e5b4d309 (diff)
downloadopencode-9862303eedff320ebe632602b6728037feb44371.tar.gz
opencode-9862303eedff320ebe632602b6728037feb44371.zip
fix: update hix hashes for all systems (#8732)
Co-authored-by: Github Action <[email protected]> Co-authored-by: Aiden Cline <[email protected]>
-rw-r--r--.github/workflows/update-nix-hashes.yml73
-rw-r--r--nix/hashes.json6
2 files changed, 43 insertions, 36 deletions
diff --git a/.github/workflows/update-nix-hashes.yml b/.github/workflows/update-nix-hashes.yml
index 46ea12d18..20d7d5d9d 100644
--- a/.github/workflows/update-nix-hashes.yml
+++ b/.github/workflows/update-nix-hashes.yml
@@ -17,11 +17,11 @@ on:
- "packages/*/package.json"
jobs:
- update-linux:
+ update-flake:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
- runs-on: blacksmith-4vcpu-ubuntu-2404
+ runs-on: ubuntu-latest
env:
- SYSTEM: x86_64-linux
+ TITLE: flake.lock
steps:
- name: Checkout repository
@@ -33,39 +33,32 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Setup Nix
- uses: DeterminateSystems/nix-installer-action@v20
+ uses: nixbuild/nix-quick-install-action@v34
- name: Configure git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Action"
- - name: Update flake.lock
+ - name: Update ${{ env.TITLE }}
run: |
set -euo pipefail
- echo "📦 Updating flake.lock..."
+ echo "📦 Updating $TITLE..."
nix flake update
- echo "✅ flake.lock updated successfully"
+ echo "✅ $TITLE updated successfully"
- - name: Update node_modules hash for x86_64-linux
- run: |
- set -euo pipefail
- echo "🔄 Updating node_modules hash for x86_64-linux..."
- nix/scripts/update-hashes.sh
- echo "✅ node_modules hash for x86_64-linux updated successfully"
-
- - name: Commit Linux hash changes
+ - name: Commit ${{ env.TITLE }} changes
env:
TARGET_BRANCH: ${{ github.head_ref || github.ref_name }}
run: |
set -euo pipefail
- echo "🔍 Checking for changes in tracked Nix files..."
+ echo "🔍 Checking for changes in tracked files..."
summarize() {
local status="$1"
{
- echo "### Nix Hash Update (x86_64-linux)"
+ echo "### Nix $TITLE"
echo ""
echo "- ref: ${GITHUB_REF_NAME}"
echo "- status: ${status}"
@@ -75,11 +68,10 @@ jobs:
fi
echo "" >> "$GITHUB_STEP_SUMMARY"
}
-
- FILES=(flake.lock flake.nix nix/node-modules.nix nix/hashes.json)
+ FILES=(flake.lock flake.nix)
STATUS="$(git status --short -- "${FILES[@]}" || true)"
if [ -z "$STATUS" ]; then
- echo "✅ No changes detected. Hashes are already up to date."
+ echo "✅ No changes detected."
summarize "no changes"
exit 0
fi
@@ -89,7 +81,7 @@ jobs:
echo "🔗 Staging files..."
git add "${FILES[@]}"
echo "💾 Committing changes..."
- git commit -m "Update Nix flake.lock and x86_64-linux hash"
+ git commit -m "Update $TITLE"
echo "✅ Changes committed"
BRANCH="${TARGET_BRANCH:-${GITHUB_REF_NAME}}"
@@ -101,12 +93,25 @@ jobs:
summarize "committed $(git rev-parse --short HEAD)"
- update-macos:
- needs: update-linux
+ update-node-modules-hash:
+ needs: update-flake
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
- runs-on: macos-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - system: x86_64-linux
+ host: ubuntu-latest
+ - system: aarch64-linux
+ host: ubuntu-22.04-arm
+ - system: x86_64-darwin
+ host: macos-15-intel
+ - system: aarch64-darwin
+ host: macos-latest
+ runs-on: ${{ matrix.host }}
env:
- SYSTEM: aarch64-darwin
+ SYSTEM: ${{ matrix.system }}
+ TITLE: node_modules hash (${{ matrix.system }})
steps:
- name: Checkout repository
@@ -118,7 +123,7 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Setup Nix
- uses: DeterminateSystems/nix-installer-action@v20
+ uses: nixbuild/nix-quick-install-action@v34
- name: Configure git
run: |
@@ -132,25 +137,25 @@ jobs:
BRANCH="${TARGET_BRANCH:-${GITHUB_REF_NAME}}"
git pull origin "$BRANCH"
- - name: Update node_modules hash for aarch64-darwin
+ - name: Update ${{ env.TITLE }}
run: |
set -euo pipefail
- echo "🔄 Updating node_modules hash for aarch64-darwin..."
+ echo "🔄 Updating $TITLE..."
nix/scripts/update-hashes.sh
- echo "✅ node_modules hash for aarch64-darwin updated successfully"
+ echo "✅ $TITLE updated successfully"
- - name: Commit macOS hash changes
+ - name: Commit ${{ env.TITLE }} changes
env:
TARGET_BRANCH: ${{ github.head_ref || github.ref_name }}
run: |
set -euo pipefail
- echo "🔍 Checking for changes in tracked Nix files..."
+ echo "🔍 Checking for changes in tracked files..."
summarize() {
local status="$1"
{
- echo "### Nix Hash Update (aarch64-darwin)"
+ echo "### Nix $TITLE"
echo ""
echo "- ref: ${GITHUB_REF_NAME}"
echo "- status: ${status}"
@@ -164,7 +169,7 @@ jobs:
FILES=(nix/hashes.json)
STATUS="$(git status --short -- "${FILES[@]}" || true)"
if [ -z "$STATUS" ]; then
- echo "✅ No changes detected. Hash is already up to date."
+ echo "✅ No changes detected."
summarize "no changes"
exit 0
fi
@@ -174,7 +179,7 @@ jobs:
echo "🔗 Staging files..."
git add "${FILES[@]}"
echo "💾 Committing changes..."
- git commit -m "Update aarch64-darwin hash"
+ git commit -m "Update $TITLE"
echo "✅ Changes committed"
BRANCH="${TARGET_BRANCH:-${GITHUB_REF_NAME}}"
diff --git a/nix/hashes.json b/nix/hashes.json
index a84eec5b4..652b24fec 100644
--- a/nix/hashes.json
+++ b/nix/hashes.json
@@ -1,6 +1,8 @@
{
"nodeModules": {
- "x86_64-linux": "sha256-Fl1BdjNSg19LJVSgDMiBX8JuTaGlL2I5T+rqLfjSeO4=",
- "aarch64-darwin": "sha256-7UajHu40n7JKqurU/+CGlitErsVFA2qDneUytI8+/zQ="
+ "x86_64-linux": "sha256-4ndHIlS9t1ynRdFszJ1nvcu3YhunhuOc7jcuHI1FbnM=",
+ "aarch64-linux": "sha256-H9eUk/yVrQqVrAYONlb6As7mjkPXtOauBVfMBeVAmRo=",
+ "aarch64-darwin": "sha256-C0E9KAEj3GI83HwirIL2zlXYIe92T+7Iv6F51BB6slY=",
+ "x86_64-darwin": "sha256-wj5fZnyfu6Sf1HcqvsQM3M7dl5BKRAHmoqm1Ai1cL2M="
}
}