Update .forgejo/workflows/pgo-binary.yml

This commit is contained in:
gigirassy
2026-08-18 01:15:14 +02:00
parent 880af9a5d7
commit ea18d55d39
+11 -5
View File
@@ -19,6 +19,11 @@ jobs:
image: rust:alpine image: rust:alpine
steps: steps:
- name: Install node
run: |
apk add --no-cache \
node
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -137,15 +142,16 @@ jobs:
image: rust:alpine image: rust:alpine
steps: steps:
- name: Checkout repository - name: Install Windows cross compiler and node
uses: actions/checkout@v4
- name: Install Windows cross compiler
run: | run: |
apk add --no-cache \ apk add --no-cache \
mingw-w64-gcc \ mingw-w64-gcc \
build-base \ build-base \
file file \
node
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust target - name: Install Rust target
run: | run: |