-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix windows installer and remove cache folder from artifacts
- Loading branch information
Showing
4 changed files
with
80 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -228,4 +228,64 @@ jobs: | |
with: | ||
name: ${{env.BUILD_NAMEx64}}_MSI | ||
path: ./apps/*.msi | ||
|
||
build-windows-ia32: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install linux utils | ||
run: choco install --force -y awk grep sed | ||
- name: Setup environment | ||
env: | ||
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | ||
run: | | ||
# This is the hash of the commit for the PR | ||
# when the action is triggered by PR, empty otherwise | ||
COMMIT_ID=${{ github.event.pull_request.head.sha }} | ||
# This is the hash of the commit when triggered by push | ||
# but the hash of refs/pull/<n>/merge, which is different | ||
# from the hash of the latest commit in the PR, that's | ||
# why we try github.event.pull_request.head.sha first | ||
COMMIT_ID=${COMMIT_ID:-${{ github.sha }}} | ||
BUILD_SUFFIX=ci-$(date '+%Y%m%d')-$(git rev-parse --short ${COMMIT_ID}) | ||
VERSION=$(grep version package.json | sed 's/.*"\([0-9][0-9]*.[0-9]*.[0-9]*\)".*/\1/g') | ||
echo "ACTIONS_STEP_DEBUG=true" >> $GITHUB_ENV | ||
echo "BUILD_SUFFIX=${BUILD_SUFFIX}" >> $GITHUB_ENV | ||
echo "BUILD_NAME=inav-blackbox-explorer_win32_${VERSION}_${BUILD_SUFFIX}" >> $GITHUB_ENV | ||
mkdir ./apps/ | ||
shell: bash | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
- uses: engineerd/[email protected] | ||
with: | ||
name: "Wix Toolset 3.1.4" | ||
url: "https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip" | ||
pathInArchive: "/" | ||
- name: Install deps | ||
uses: nick-fields/retry@v3 | ||
with: | ||
max_attempts: 3 | ||
retry_on: error | ||
command: npm install | ||
timeout_minutes: 10 | ||
- name: Build windows | ||
run: npm run gulp release -- --platform="win" --arch="ia32" --installer | ||
- name: Upload Windows x64 zip | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{env.BUILD_NAME}}_ZIP | ||
path: ./apps/*.zip | ||
- name: Upload Windows x64 msi | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{env.BUILD_NAME}}_MSI | ||
path: ./apps/*.msi | ||
- name: Upload Windows ia32 installer | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{env.BUILD_NAME}}_INSTALLER | ||
path: ./apps/*.exe | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,8 @@ debug/ | |
release/ | ||
|
||
# artefacts for Visual Studio Code | ||
/.vscode/ | ||
/.vscode/ | ||
|
||
*~ | ||
*.swp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters