bitwarden-desktop/.github/workflows/build.yml

358 lines
11 KiB
YAML
Raw Normal View History

2020-03-24 14:03:14 +01:00
name: Build
on:
push:
branches-ignore:
- 'l10n_master'
- 'gh-pages'
2020-03-24 14:03:14 +01:00
jobs:
2020-09-24 18:17:41 +02:00
cloc:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up cloc
run: |
sudo apt-get update
sudo apt-get -y install cloc
- name: Print lines of code
run: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
2020-09-24 22:38:30 +02:00
linux:
runs-on: ubuntu-latest
2020-03-24 14:03:14 +01:00
steps:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '10.x'
2020-09-24 22:38:30 +02:00
- name: Set Node options
2020-11-03 19:29:00 +01:00
run: echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
2020-09-24 22:38:30 +02:00
2020-03-24 15:33:49 +01:00
- name: Set up environment
2020-03-24 14:03:14 +01:00
run: |
2020-09-24 22:38:30 +02:00
sudo apt-get update
sudo apt-get -y install pkg-config libxss-dev libsecret-1-dev rpm
2020-03-24 14:03:14 +01:00
- name: Set up snap
run: |
sudo snap install snapcraft --classic
2020-09-30 19:21:16 +02:00
2020-03-24 14:03:14 +01:00
- name: Print environment
run: |
node --version
npm --version
2020-09-30 19:21:16 +02:00
snap --version
2020-09-30 19:28:06 +02:00
snapcraft --version || echo 'snapcraft unavailable'
2020-03-24 14:03:14 +01:00
- name: Checkout repo
uses: actions/checkout@v2
2020-09-24 22:38:30 +02:00
- name: Load package version
run: ./.github/scripts/load-version.ps1
2020-03-24 15:33:49 +01:00
shell: pwsh
2020-09-24 22:38:30 +02:00
- name: Install Node dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Build application
run: npm run dist:lin
- name: Upload .deb artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-${{ env.PACKAGE_VERSION }}-amd64.deb
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-amd64.deb
- name: Upload .rpm artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
2020-09-25 17:20:42 +02:00
name: Bitwarden-${{ env.PACKAGE_VERSION }}-x86_64.rpm
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-x86_64.rpm
2020-09-24 22:38:30 +02:00
- name: Upload .freebsd artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-${{ env.PACKAGE_VERSION }}-x64.freebsd
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-x64.freebsd
- name: Upload .snap artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
2020-09-25 16:55:47 +02:00
name: bitwarden_${{ env.PACKAGE_VERSION }}_amd64.snap
path: ./dist/bitwarden_${{ env.PACKAGE_VERSION }}_amd64.snap
2020-09-24 22:38:30 +02:00
- name: Upload .AppImage artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
2020-09-25 17:20:42 +02:00
name: Bitwarden-${{ env.PACKAGE_VERSION }}-x86_64.AppImage
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-x86_64.AppImage
2020-09-24 22:38:30 +02:00
2020-09-30 19:21:16 +02:00
2020-09-24 22:38:30 +02:00
windows:
runs-on: windows-latest
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: "3.1.x"
2020-09-24 22:38:30 +02:00
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '10.x'
- name: Set Node options
2020-11-03 19:29:00 +01:00
run: echo "NODE_OPTIONS=--max_old_space_size=4096" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
shell: pwsh
2020-09-24 22:38:30 +02:00
- name: Install AST
shell: pwsh
run: |
cd $HOME
git clone https://github.com/vcsjones/AzureSignTool.git
cd AzureSignTool
$latest_head = $(git rev-parse HEAD)[0..9] -join ""
$latest_version = "0.0.0-g$latest_head"
Write-Host "--------"
Write-Host "git commit - $(git rev-parse HEAD)"
Write-Host "latest_head - $latest_head"
Write-Host "PACKAGE VERSION TO BUILD - $latest_version"
Write-Host "--------"
dotnet restore
dotnet pack --output ./nupkg
dotnet tool install --global --ignore-failed-sources --add-source ./nupkg --version $latest_version azuresigntool
- name: Set up environment
shell: pwsh
run: |
choco install checksum --no-progress
2020-09-30 19:21:16 +02:00
2020-09-24 22:38:30 +02:00
- name: Print environment
2020-03-24 15:33:49 +01:00
run: |
2020-09-24 22:38:30 +02:00
node --version
npm --version
2021-01-14 22:50:25 +01:00
choco --version
2020-09-24 22:38:30 +02:00
- name: Checkout repo
uses: actions/checkout@v2
- name: Load package version
run: ./.github/scripts/load-version.ps1
shell: pwsh
2020-03-24 15:33:49 +01:00
2020-03-24 14:03:14 +01:00
- name: Install Node dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Build & Sign (dev)
run: |
npm run build
npm run pack:win
env:
ELECTRON_BUILDER_SIGN: 1
SIGNING_VAULT_URL: ${{ secrets.SIGNING_VAULT_URL }}
SIGNING_CLIENT_ID: ${{ secrets.SIGNING_CLIENT_ID }}
SIGNING_TENANT_ID: ${{ secrets.SIGNING_TENANT_ID }}
SIGNING_CLIENT_SECRET: ${{ secrets.SIGNING_CLIENT_SECRET }}
SIGNING_CERT_NAME: ${{ secrets.SIGNING_CERT_NAME }}
2020-09-30 19:21:16 +02:00
- name: Rename appx files for store
shell: pwsh
run: |
Copy-Item "./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-ia32.appx" `
-Destination "./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-ia32-store.appx"
Copy-Item "./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-x64.appx" `
-Destination "./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-x64-store.appx"
- name: Deploy to Chocolatey
shell: pwsh
run: |
2021-01-22 05:53:28 +01:00
Copy-Item -Path ./stores/chocolatey -Destination ./dist/chocolatey -Recurse
Copy-Item -Path ./dist/nsis-web/Bitwarden-Installer-${{ env.PACKAGE_VERSION }}.exe -Destination ./dist/chocolatey
2021-01-22 05:53:28 +01:00
$checksum = checksum -t sha256 ./dist/chocoloatey/Bitwarden-Installer-${{ env.PACKAGE_VERSION }}.exe
$chocoInstall = "./dist/chocolatey/tools/chocolateyinstall.ps1"
(Get-Content $chocoInstall).replace('__version__', "$env:PACKAGE_VERSION").replace('__checksum__', $checksum) | Set-Content $chocoInstall
choco pack ./dist/chocolatey/bitwarden.nuspec --version "$env:PACKAGE_VERSION" --out ./dist/chocolatey
2020-09-24 22:38:30 +02:00
- name: Upload portable exe artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-Portable-${{ env.PACKAGE_VERSION }}.exe
path: ./dist/Bitwarden-Portable-${{ env.PACKAGE_VERSION }}.exe
- name: Upload installer exe artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-Installer-${{ env.PACKAGE_VERSION }}.exe
path: ./dist/nsis-web/Bitwarden-Installer-${{ env.PACKAGE_VERSION }}.exe
- name: Upload store appx ia32 artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-${{ env.PACKAGE_VERSION }}-ia32-store.appx
2020-09-30 19:21:16 +02:00
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-ia32-store.appx
2020-09-24 22:38:30 +02:00
- name: Upload store appx x64 artifact
if: github.ref == 'refs/heads/master'
2020-09-24 22:38:30 +02:00
uses: actions/upload-artifact@v2
with:
2020-09-24 22:38:30 +02:00
name: Bitwarden-${{ env.PACKAGE_VERSION }}-x64-store.appx
2020-09-30 19:21:16 +02:00
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-x64-store.appx
- name: Upload nupkg artifact
if: github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v2
with:
name: bitwarden.${{ env.PACKAGE_VERSION }}.nupkg
path: ./dist/chocolatey/bitwarden.${{ env.PACKAGE_VERSION }}.nupkg
2020-09-22 22:00:58 +02:00
macos:
runs-on: macos-latest
steps:
2020-09-24 21:51:17 +02:00
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '10.x'
2020-09-24 22:13:26 +02:00
- name: Set Node options
2020-11-03 19:29:00 +01:00
run: echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
2020-09-24 22:13:26 +02:00
2020-09-22 22:00:58 +02:00
- name: Print environment
run: |
2020-09-24 21:51:17 +02:00
node --version
npm --version
2020-09-22 22:00:58 +02:00
Write-Output "GitHub ref: $env:GITHUB_REF"
Write-Output "GitHub event: $env:GITHUB_EVENT"
shell: pwsh
env:
GITHUB_REF: ${{ github.ref }}
GITHUB_EVENT: ${{ github.event_name }}
- name: Checkout repo
uses: actions/checkout@v2
- name: Decrypt secrets
run: ./.github/scripts/macos/decrypt-secrets.ps1
shell: pwsh
env:
DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }}
- name: Set up keychain
run: ./.github/scripts/macos/setup-keychain.ps1
shell: pwsh
env:
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
DESKTOP_KEY_PASSWORD: ${{ secrets.DESKTOP_KEY_PASSWORD }}
DEVID_CERT_PASSWORD: ${{ secrets.DEVID_CERT_PASSWORD }}
APPSTORE_CERT_PASSWORD: ${{ secrets.APPSTORE_CERT_PASSWORD }}
2020-09-23 20:20:01 +02:00
MACDEV_CERT_PASSWORD: ${{ secrets.MACDEV_CERT_PASSWORD }}
2020-09-22 22:32:39 +02:00
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
2020-09-22 22:00:58 +02:00
- name: Set up provisioning profiles
run: ./.github/scripts/macos/setup-profiles.ps1
shell: pwsh
2020-09-24 18:17:41 +02:00
- name: Increment version
run: ./.github/scripts/macos/increment-version.ps1
shell: pwsh
- name: Load package version
run: ./.github/scripts/load-version.ps1
shell: pwsh
2020-09-22 22:19:17 +02:00
- name: Install Node dependencies
run: npm install
- name: Run linter
run: npm run lint
2020-09-24 18:17:41 +02:00
- name: Create Safari directory
if: github.ref == 'refs/heads/master'
2020-09-22 23:28:09 +02:00
shell: pwsh
2020-09-24 19:01:50 +02:00
run: New-Item ./dist-safari -ItemType Directory -ea 0
2020-09-22 23:28:09 +02:00
- name: Checkout browser extension
if: github.ref == 'refs/heads/master'
2020-09-22 23:28:09 +02:00
uses: actions/checkout@v2
with:
repository: 'bitwarden/browser'
2020-09-24 19:21:15 +02:00
path: 'dist-safari/browser'
2020-09-22 23:28:09 +02:00
2020-09-24 18:17:41 +02:00
- name: Build Safari extension
if: github.ref == 'refs/heads/master'
2020-09-24 18:17:41 +02:00
shell: pwsh
run: ./scripts/safari-build.ps1 -skipcheckout -skipoutcopy
2020-09-22 22:00:58 +02:00
2020-09-25 17:48:15 +02:00
- name: Load Safari extension for .dmg
if: github.ref == 'refs/heads/master'
2020-09-25 17:48:15 +02:00
shell: pwsh
run: ./scripts/safari-build.ps1 -copyonly
2020-09-28 18:18:09 +02:00
- name: Build application (dev)
if: github.ref != 'refs/heads/master'
2020-09-25 17:48:15 +02:00
run: npm run build
2020-09-28 18:18:09 +02:00
- name: Build application (dist)
if: github.ref == 'refs/heads/master'
2020-09-25 17:48:15 +02:00
run: npm run dist:mac
env:
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
- name: Upload .zip artifact
if: github.ref == 'refs/heads/master'
2020-09-25 17:48:15 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-${{ env.PACKAGE_VERSION }}-mac.zip
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}-mac.zip
- name: Upload .dmg artifact
if: github.ref == 'refs/heads/master'
2020-09-25 17:48:15 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-${{ env.PACKAGE_VERSION }}.dmg
path: ./dist/Bitwarden-${{ env.PACKAGE_VERSION }}.dmg
2020-09-24 18:17:41 +02:00
- name: Load Safari extension for App Store
if: github.ref == 'refs/heads/master'
2020-09-22 23:14:07 +02:00
shell: pwsh
2020-09-24 18:17:41 +02:00
run: ./scripts/safari-build.ps1 -mas -copyonly
2020-09-22 22:00:58 +02:00
2020-09-28 18:18:09 +02:00
- name: Build application for App Store
if: github.ref == 'refs/heads/master'
2020-09-22 22:00:58 +02:00
run: npm run dist:mac:mas
2020-09-22 22:55:40 +02:00
env:
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
2020-09-24 16:20:56 +02:00
2020-09-24 18:17:41 +02:00
- name: Upload .pkg artifact
if: github.ref == 'refs/heads/master'
2020-09-24 18:17:41 +02:00
uses: actions/upload-artifact@v2
with:
name: Bitwarden-${{ env.PACKAGE_VERSION }}.pkg
path: ./dist/mas/Bitwarden-${{ env.PACKAGE_VERSION }}.pkg