Skip to content

Commit

Permalink
Update build-binaries.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Jun 28, 2024
1 parent af205fa commit 3fe25f1
Showing 1 changed file with 81 additions and 14 deletions.
95 changes: 81 additions & 14 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,24 @@ on:
- daniel/infisical-binary

jobs:
build:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
target:
[
"node18-alpine-x64",
"node18-alpine-x86",
"node18-alpine-armv7",
"node18-alpine-arm64",
"node18-freebsd-x64",
"node18-freebsd-x86",
"node18-freebsd-armv7",
"node18-linux-x64",
"node18-linux-x86",
"node18-linux-armv7",
"node18-linux-arm64",
"node18-alpine-x64",
"node18-alpine-x86",
"node18-alpine-armv7",
"node18-alpine-arm64",
"node18-linuxstatic-x64",
"node18-linuxstatic-x86",
"node18-linuxstatic-armv7",
"node18-linuxstatic-arm64",
"node18-macos-x64",
"node18-macos-arm64",
"node18-win-x64",
"node18-win-x86"
"node18-linuxstatic-arm64"
]

defaults:
Expand All @@ -59,7 +52,81 @@ jobs:
run: npm run binary:build

- name: Build binary
run: npx pkg --no-bytecode --public-packages \"*\" --public --targets ${{matrix.target}} .
run: npx pkg --no-bytecode --public-packages "*" --targets ${{matrix.target}} .

- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: binaries-${{ matrix.target }}
path: ./backend/binary/

build-macos:
runs-on: macos-latest
strategy:
matrix:
target: ["node18-macos-x64", "node18-macos-arm64"]

defaults:
run:
working-directory: ./backend

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install dependencies (backend)
run: npm install

- name: Install dependencies (frontend)
run: npm install --prefix ../frontend

- name: Prerequisites for pkg
run: npm run binary:build

- name: Build binary
run: npx pkg --no-bytecode --public-packages "*" --targets ${{matrix.target}} .

- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: binaries-${{ matrix.target }}
path: ./backend/binary/

build-windows:
runs-on: windows-latest
strategy:
matrix:
target: ["node18-win-x64", "node18-win-x86"]

defaults:
run:
working-directory: ./backend

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install dependencies (backend)
run: npm install

- name: Install dependencies (frontend)
run: npm install --prefix ../frontend

- name: Prerequisites for pkg
run: npm run binary:build

- name: Build binary
run: npx pkg --no-bytecode --public-packages "*" --targets ${{matrix.target}} .

- name: Upload binaries
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 3fe25f1

Please sign in to comment.