mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
208 lines
5.7 KiB
YAML
208 lines
5.7 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'l10n_master'
|
|
- 'gh-pages'
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
|
|
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 C#,SQL,Razor,"Bourne Shell",PowerShell,HTML,CSS,Sass,JavaScript,TypeScript --vcs git
|
|
|
|
ubuntu:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '10.x'
|
|
|
|
- name: Set up gulp
|
|
run: npm i -g gulp
|
|
|
|
- name: Print environment
|
|
run: |
|
|
whoami
|
|
dotnet --info
|
|
node --version
|
|
npm --version
|
|
gulp --version
|
|
docker --version
|
|
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: Log into docker
|
|
if: github.ref == 'refs/heads/master' || github.event_name == 'release'
|
|
run: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
|
env:
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Restore
|
|
run: dotnet tool restore
|
|
|
|
- name: Build
|
|
run: |
|
|
chmod +x ./build.sh
|
|
./build.sh
|
|
|
|
- name: Tag dev
|
|
if: github.ref == 'refs/heads/master' || github.event_name == 'release'
|
|
run: ./build.sh tag dev
|
|
|
|
- name: Tag beta
|
|
if: github.event_name == 'release'
|
|
run: ./build.sh tag beta
|
|
|
|
- name: Tag version
|
|
if: github.event_name == 'release'
|
|
run: ./build.sh tag $($env:RELEASE_TAG_NAME.TrimStart('v'))
|
|
shell: pwsh
|
|
env:
|
|
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
|
|
|
|
- name: List docker images
|
|
if: github.ref == 'refs/heads/master' || github.event_name == 'release'
|
|
run: docker images
|
|
|
|
- name: Push dev images
|
|
if: github.ref == 'refs/heads/master' || github.event_name == 'release'
|
|
run: ./build.sh push dev
|
|
|
|
- name: Push beta images
|
|
if: github.event_name == 'release'
|
|
run: ./build.sh push beta
|
|
|
|
- name: Push latest images
|
|
if: github.event_name == 'release'
|
|
run: ./build.sh push latest
|
|
|
|
- name: Push version images
|
|
if: github.event_name == 'release'
|
|
run: ./build.sh push $($env:RELEASE_TAG_NAME.TrimStart('v'))
|
|
shell: pwsh
|
|
env:
|
|
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
|
|
|
|
- name: Make docker stub
|
|
run: |
|
|
STUB_OUTPUT=$(pwd)/docker-stub
|
|
docker run -i --rm --name setup -v $STUB_OUTPUT:/bitwarden bitwarden/setup:dev \
|
|
dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.example.com -os lin
|
|
sudo chown -R $(whoami):$(whoami) $STUB_OUTPUT
|
|
rm -rf $STUB_OUTPUT/letsencrypt
|
|
rm $STUB_OUTPUT/env/uid.env $STUB_OUTPUT/config.yml
|
|
touch $STUB_OUTPUT/env/uid.env
|
|
cd docker-stub; zip -r ../docker-stub.zip *; cd ..
|
|
|
|
- name: Upload docker stub artifact
|
|
uses: actions/upload-artifact@v2-preview
|
|
with:
|
|
name: docker-stub.zip
|
|
path: ./docker-stub.zip
|
|
|
|
- name: Build swagger
|
|
run: |
|
|
cd ./src/Api
|
|
dotnet swagger tofile --output ../../swagger.json --host https://api.bitwarden.com `
|
|
./obj/Docker/publish/Api/Api.dll public
|
|
cd ../..
|
|
shell: pwsh
|
|
env:
|
|
ASPNETCORE_ENVIRONMENT: Production
|
|
swaggerGen: 'True'
|
|
|
|
- name: Upload swagger artifact
|
|
uses: actions/upload-artifact@v2-preview
|
|
with:
|
|
name: swagger.json
|
|
path: ./swagger.json
|
|
|
|
- name: Log out of docker
|
|
if: github.ref == 'refs/heads/master' || github.event_name == 'release'
|
|
run: docker logout
|
|
|
|
- name: Upload release assets
|
|
if: github.event_name == 'release'
|
|
run: |
|
|
hub release edit `
|
|
-a ./swagger.json `
|
|
-a ./docker-stub.zip `
|
|
-m "Version $($env:RELEASE_TAG_NAME.TrimStart('v'))" `
|
|
$env:RELEASE_TAG_NAME
|
|
shell: pwsh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
|
|
|
|
windows:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Set up NuGet
|
|
uses: nuget/setup-nuget@v1
|
|
with:
|
|
nuget-version: 'latest'
|
|
|
|
- name: Set up MSBuild
|
|
uses: microsoft/setup-msbuild@v1.0.0
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '10.x'
|
|
|
|
- name: Print environment
|
|
run: |
|
|
nuget help
|
|
msbuild -version
|
|
dotnet --info
|
|
node --version
|
|
npm --version
|
|
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: Restore
|
|
run: msbuild /t:restore
|
|
shell: pwsh
|
|
|
|
- name: Build solution
|
|
run: msbuild bitwarden-server.sln /p:Configuration=Debug /verbosity:minimal
|
|
shell: pwsh
|
|
|
|
- name: Test solution
|
|
run: dotnet test .\test\Core.Test\Core.Test.csproj --configuration Debug --no-build
|
|
shell: pwsh
|