-
Notifications
You must be signed in to change notification settings - Fork 910
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
118 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Build for Linux | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: travisci/ci-ubuntu-1804 | ||
|
||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cache NodeJS modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
./node_modules | ||
./app/node_modules | ||
key: ubuntu-deps-${{ hashFiles('yarn.lock') }}-${{ hashFiles('app/package-lock.json') }} | ||
|
||
- name: Install Dependencies | ||
run: npm ci | ||
|
||
- name: Setup AWS CLI | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Lint | ||
run: npm run lint | ||
|
||
- name: Build | ||
run: DEBUG=electron-packager npm run build | ||
|
||
- uses: snapcore/action-build@v1 | ||
id: build | ||
|
||
- uses: snapcore/action-publish@v1 | ||
env: | ||
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }} | ||
with: | ||
snap: ${{ steps.build.outputs.snap }} | ||
release: edge | ||
|
||
- name: Sync artifacts to S3 bucket | ||
run: | | ||
aws s3 sync app/dist/ "s3://mailspring-builds/client/$(git rev-parse --short HEAD)/osx" \ | ||
--acl public-read \ | ||
--exclude "*" --include *.zip |
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build for macOS | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: master | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
# Confusingly, macos-13 is intel and macos-latest is ARM | ||
os: [macos-13, macos-latest] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cache NodeJS modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
./node_modules | ||
./app/node_modules | ||
key: ${{ matrix.os }}-deps-${{ hashFiles('yarn.lock') }}-${{ hashFiles('app/package-lock.json') }} | ||
|
||
- name: Install Dependencies | ||
run: npm ci | ||
|
||
- name: Setup Codesigning | ||
uses: apple-actions/import-codesign-certs@v3 | ||
with: | ||
p12-file-base64: ${{ secrets.APPLE_CODESIGN_P12 }} | ||
p12-password: ${{ secrets.APPLE_CODESIGN_KEY_PASSWORD }} | ||
|
||
- name: Setup AWS CLI | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Lint | ||
run: npm run lint | ||
|
||
- name: Build | ||
run: SIGN_BUILD=true DEBUG=electron-packager,electron-osx-sign,electron-notarize* npm run build | ||
env: | ||
APPLE_ID_ASC_PROVIDER: ${{ secrets.APPLE_ID_ASC_PROVIDER }} | ||
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} | ||
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | ||
APPLE_ID: ${{ secrets.APPLE_ID }} | ||
|
||
- name: Rename artifacts | ||
if: matrix.os == 'macos-latest' | ||
run: | | ||
mv app/dist/Mailspring.zip app/dist/Mailspring-AppleSilicon.zip | ||
- name: Sync artifacts to S3 bucket | ||
run: | | ||
aws s3 sync app/dist/ "s3://mailspring-builds/client/$(git rev-parse --short HEAD)/osx" \ | ||
--acl public-read \ | ||
--exclude "*" --include *.zip |