Skip to content

Commit c1ef40d

Browse files
Update to Apodini 0.7.1 (#1)
1 parent 497d259 commit c1ef40d

79 files changed

Lines changed: 6932 additions & 2189 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/pull_request_template.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/release-drafter.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/build-and-test.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#
2+
# This source file is part of the Apodini open source project
3+
#
4+
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
5+
#
6+
# SPDX-License-Identifier: MIT
7+
#
8+
9+
name: Build
10+
11+
on:
12+
push:
13+
branches:
14+
- develop
15+
workflow_dispatch:
16+
17+
jobs:
18+
build_and_test:
19+
name: Build and Test
20+
uses: Apodini/.github/.github/workflows/build-and-test.yml@v1
21+
with:
22+
packagename: ApodiniMigratorExample
23+
test: false
24+
testdocc: false
25+
docker-compose-test:
26+
name: Docker Compose Test
27+
uses: Apodini/.github/.github/workflows/docker-compose-test.yml@v1
28+
with:
29+
testscript: test.sh

.github/workflows/pull_request.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#
2+
# This source file is part of the Apodini open source project
3+
#
4+
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
5+
#
6+
# SPDX-License-Identifier: MIT
7+
#
8+
9+
name: Pull Request
10+
11+
on:
12+
pull_request:
13+
workflow_dispatch:
14+
15+
jobs:
16+
build_and_test:
17+
name: Build and Test
18+
uses: Apodini/.github/.github/workflows/build-and-test.yml@v1
19+
with:
20+
packagename: ApodiniMigratorExample
21+
test: false
22+
testdocc: false
23+
reuse_action:
24+
name: REUSE Compliance Check
25+
uses: Apodini/.github/.github/workflows/reuse.yml@v1
26+
swiftlint:
27+
name: SwiftLint
28+
uses: Apodini/.github/.github/workflows/swiftlint.yml@v1
29+
docker-compose-test:
30+
name: Docker Compose Test
31+
uses: Apodini/.github/.github/workflows/docker-compose-test.yml@v1
32+
with:
33+
testscript: test.sh

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#
2+
# This source file is part of the Apodini open source project
3+
#
4+
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
5+
#
6+
# SPDX-License-Identifier: MIT
7+
#
8+
9+
name: Release
10+
11+
on:
12+
release:
13+
types: [published]
14+
workflow_dispatch:
15+
16+
jobs:
17+
docker-build-and-push:
18+
name: Docker Build and Push
19+
uses: Apodini/.github/.github/workflows/docker-build-and-push.yml@v1
20+
with:
21+
image-name: apodini/migratorexample

.github/workflows/reuseaction.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/update.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#
2+
# This source file is part of the Apodini open source project
3+
#
4+
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
5+
#
6+
# SPDX-License-Identifier: MIT
7+
#
8+
9+
name: Update
10+
11+
on:
12+
schedule:
13+
- cron: '0 0 1 * *'
14+
workflow_dispatch:
15+
16+
jobs:
17+
spm_update:
18+
name: Swift Package Update
19+
uses: Apodini/.github/.github/workflows/spm-update.yml@v1
20+
secrets:
21+
token: ${{ secrets.ACCESS_TOKEN }}

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
# Apodini .gitignore File
1010

1111
# Swift Package Manager
12-
Package.resolved
1312
*.xcodeproj
1413
.swiftpm
1514
.build/
@@ -23,4 +22,6 @@ xcuserdata/
2322

2423
# Other files
2524
.DS_Store
26-
.env
25+
.env
26+
27+
ApodiniMigrator/

0 commit comments

Comments
 (0)