Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore: pin dogfood to release branch during release freeze#20028

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
deansheather merged 13 commits intomainfromdean/release-freeze
Oct 2, 2025
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
13 commits
Select commitHold shift + click to select a range
0ba97fc
chore: pin dogfood to release branch during release freeze
deansheatherSep 30, 2025
dfdbf87
fixup! chore: pin dogfood to release branch during release freeze
deansheatherSep 30, 2025
108ce74
fixup! chore: pin dogfood to release branch during release freeze
deansheatherSep 30, 2025
82964e5
fixup! chore: pin dogfood to release branch during release freeze
deansheatherSep 30, 2025
c959e53
fixup! chore: pin dogfood to release branch during release freeze
deansheatherSep 30, 2025
479b32e
fixup! chore: pin dogfood to release branch during release freeze
deansheatherSep 30, 2025
81ffde0
TEST
deansheatherSep 30, 2025
082fdec
Fixes
deansheatherOct 1, 2025
b1e2fe9
fixup! Fixes
deansheatherOct 1, 2025
d2aa4cb
Revert "TEST"
deansheatherOct 1, 2025
6db8f24
sign dylib on release branches
deansheatherOct 1, 2025
381ddf2
Merge branch 'main' into dean/release-freeze
deansheatherOct 1, 2025
a9c53cb
Merge branch 'main' into dean/release-freeze
deansheatherOct 2, 2025
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
PrevPrevious commit
NextNext commit
TEST
  • Loading branch information
@deansheather
deansheather committedOct 1, 2025
commit81ffde0c7cd9c0383e6e3ad7b587acac4c4907cc

Some comments aren't visible on the classic Files Changed page.

19 changes: 8 additions & 11 deletions.github/workflows/ci.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -968,7 +968,7 @@ jobs:
needs: changes
# We always build the dylibs on Go changes to verify we're not merging unbuildable code,
# but they need only be signed and uploaded on coder/coder main.
if:needs.changes.outputs.go == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')
if: true
runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest' }}
steps:
# Harden Runner doesn't work on macOS
Expand DownExpand Up@@ -996,7 +996,7 @@ jobs:
uses: ./.github/actions/setup-go

- name: Install rcodesign
if:${{ github.repository_owner == 'coder' && github.ref == 'refs/heads/main' }}
if:true
run: |
set -euo pipefail
wget -O /tmp/rcodesign.tar.gz https://github.com/indygreg/apple-platform-rs/releases/download/apple-codesign%2F0.22.0/apple-codesign-0.22.0-macos-universal.tar.gz
Expand DownExpand Up@@ -1033,7 +1033,7 @@ jobs:
AC_CERTIFICATE_PASSWORD_FILE: /tmp/apple_cert_password.txt

- name: Upload build artifacts
if:${{ github.repository_owner == 'coder' && github.ref == 'refs/heads/main' }}
if:true
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: dylibs
Expand DownExpand Up@@ -1093,7 +1093,7 @@ jobs:
needs:
- changes
- build-dylib
if:(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && needs.changes.outputs.docs-only == 'false' && !github.event.pull_request.head.repo.fork
if:true
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-22.04' }}
permissions:
# Necessary to push docker images to ghcr.io.
Expand DownExpand Up@@ -1260,7 +1260,7 @@ jobs:
make build/coder_"$version"_linux_{amd64,arm64,armv7}.tag

# only push if we are on main branch or release branch
if[[ "${GITHUB_REF}" == "refs/heads/main" || "${GITHUB_REF}" == refs/heads/release/* ]]; then
iffalse; then
# build and push multi-arch manifest, this depends on the other images
# being pushed so will automatically push them
# note: omitting the -j argument to avoid race conditions when pushing
Expand DownExpand Up@@ -1479,14 +1479,11 @@ jobs:
deploy:
needs:
- changes
- build
if: |
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/'))
&& needs.changes.outputs.docs-only == 'false'
&& !github.event.pull_request.head.repo.fork
#- build
if: true
uses: ./.github/workflows/deploy.yaml
with:
image:${{ needs.build.outputs.IMAGE }}
image:ghcr.io/coder/coder-preview:2.26.0-devel-d5e433119
permissions:
contents: read
id-token: write
Expand Down
11 changes: 11 additions & 0 deletions.github/workflows/deploy.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -46,6 +46,12 @@ jobs:
fetch-depth: 0
persist-credentials: false

- name: CHECKOUT MAIN
run: |
set -euxo pipefail
git checkout main
git checkout origin/dean/releases-freeze -- scripts/should_deploy.sh

- name: Check if deploy is enabled
id: check
run: |
Expand All@@ -71,6 +77,11 @@ jobs:
with:
egress-policy: audit

- name: FAIL
run: |
echo "FAIL"
exit 1

- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp