-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into upgrade-martin
- Loading branch information
Showing
9 changed files
with
387 additions
and
128 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
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
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,140 @@ | ||
when: << pipeline.parameters.run_delivery_beta_all >> | ||
jobs: | ||
- bump_version: | ||
prepare_delivery: true | ||
context: | ||
- deliverino | ||
- check | ||
- check_frontend: | ||
requires: | ||
- check | ||
- build_android: | ||
name: build_android_bayern | ||
buildConfig: "bayern" | ||
flutterFlavor: "Bayern" | ||
requires: | ||
- bump_version | ||
- check_frontend | ||
context: | ||
- credentials-repo | ||
- credentials-ehrenamtskarte | ||
- deliver_android: | ||
name: deliver_android_bayern | ||
buildConfig: "bayern" | ||
context: | ||
- tuerantuer-google-play | ||
production_delivery: false | ||
requires: | ||
- build_android_bayern | ||
- build_android: | ||
name: build_android_nuernberg | ||
buildConfig: "nuernberg" | ||
flutterFlavor: "Nuernberg" | ||
requires: | ||
- bump_version | ||
- check_frontend | ||
context: | ||
- credentials-repo | ||
- credentials-ehrenamtskarte | ||
- deliver_android: | ||
name: deliver_android_nuernberg | ||
buildConfig: "nuernberg" | ||
context: | ||
- tuerantuer-google-play | ||
production_delivery: false | ||
requires: | ||
- build_android_nuernberg | ||
- build_ios: | ||
name: build_ios_bayern | ||
buildConfig: "bayern" | ||
flutterFlavor: "Bayern" | ||
requires: | ||
- bump_version | ||
- check_frontend | ||
context: | ||
- tuerantuer-apple | ||
- fastlane-match | ||
- deliver_ios: | ||
name: deliver_bayern_ios | ||
buildConfig: bayern | ||
context: | ||
- tuerantuer-apple | ||
production_delivery: false | ||
requires: | ||
- build_ios_bayern | ||
- build_ios: | ||
name: build_ios_nuernberg | ||
buildConfig: "nuernberg" | ||
flutterFlavor: "Nuernberg" | ||
requires: | ||
- bump_version | ||
- check_frontend | ||
context: | ||
- tuerantuer-apple | ||
- fastlane-match | ||
- deliver_ios: | ||
name: deliver_nuernberg_ios | ||
buildConfig: nuernberg | ||
context: | ||
- tuerantuer-apple | ||
production_delivery: false | ||
requires: | ||
- build_ios_nuernberg | ||
- notify_release: | ||
production_delivery: false | ||
context: | ||
- deliverino | ||
requires: | ||
- deliver_android_bayern | ||
- deliver_android_nuernberg | ||
- deliver_ios_bayern | ||
- deliver_ios_nuernberg | ||
- check_administration | ||
- build_administration: | ||
requires: | ||
- check_administration | ||
- bump_version | ||
- pack_administration: | ||
requires: | ||
- build_administration | ||
- build_martin | ||
- check_backend | ||
- build_backend: | ||
requires: | ||
- check_backend | ||
- pack_backend: | ||
requires: | ||
- build_backend | ||
- bump_version | ||
- check_health_backend: | ||
requires: | ||
- pack_backend | ||
- pack_martin: | ||
requires: | ||
- build_martin | ||
- bump_version | ||
- pack_meta: | ||
requires: | ||
- bump_version | ||
- deliver_to_server: | ||
name: deliver_administration_staging | ||
production: false | ||
bundle: administration | ||
context: | ||
- credentials-ehrenamtskarte | ||
requires: | ||
- pack_administration | ||
- check_health_backend | ||
- pack_martin | ||
- pack_meta | ||
- deliver_to_server: | ||
name: deliver_backend_staging | ||
production: false | ||
bundle: backend | ||
context: | ||
- credentials-ehrenamtskarte | ||
requires: | ||
- pack_administration | ||
- check_health_backend | ||
- pack_martin | ||
- pack_meta |
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 |
---|---|---|
@@ -1,23 +1,55 @@ | ||
<!-- | ||
* Copyright (c) 2021 GraphQL Contributors | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
--> | ||
<!doctype html> | ||
<html> | ||
<html lang="en"> | ||
<head> | ||
<title>GraphiQL</title> | ||
<style> | ||
body { | ||
height: 100%; | ||
margin: 0; | ||
width: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
#graphiql { | ||
height: 100vh; | ||
} | ||
</style> | ||
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script> | ||
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/graphiql/1.0.6/graphiql.css" integrity="sha512-ITcqvcmJOrZ+FOQQ2TQspONfh2JEr8MfguKQ+S+6KdsGJvzAqkxWD+GWMCNgat8zXFtYOdSZliOJXQ4Lf7RUug==" crossorigin="anonymous" /> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/graphiql/1.0.6/graphiql.min.js" integrity="sha512-rHuzgszz0hWOtqRSaX2zUaw5AMoP5foqfaXTirJNt9LScJS70CevCc/W6yOEgF2JMMS52AIdB22xz4UaN8O2Gg==" crossorigin="anonymous"></script> | ||
<!-- | ||
This GraphiQL example depends on Promise and fetch, which are available in | ||
modern browsers, but can be "polyfilled" for older browsers. | ||
GraphiQL itself depends on React DOM. | ||
If you do not want to rely on a CDN, you can host these files locally or | ||
include them directly in your favored resource bundler. | ||
--> | ||
<script crossorigin src="https://unpkg.com/[email protected]/umd/react.development.js"></script> | ||
<script crossorigin src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> | ||
<!-- | ||
These two files can be found in the npm module, however you may wish to | ||
copy them directly into your environment, or perhaps include them in your | ||
favored resource bundler. | ||
--> | ||
<script src="https://unpkg.com/[email protected]/graphiql.min.js" type="application/javascript"></script> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/graphiql.min.css"/> | ||
<!-- | ||
These are imports for the GraphIQL Explorer plugin. | ||
--> | ||
<script crossorigin src="https://unpkg.com/@graphiql/[email protected]/dist/index.umd.js"></script> | ||
|
||
<link rel="stylesheet" href="https://unpkg.com/@graphiql/[email protected]/dist/style.css"/> | ||
</head> | ||
|
||
<body> | ||
<div id="graphiql">Loading...</div> | ||
<script defer="defer" src="./renderExample.js"></script> | ||
<script type="application/javascript"> | ||
window.GraphQLVersion = "3.2.1" | ||
</script> | ||
<script defer src="renderExample.js" type="application/javascript"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.