Skip to content

Commit 6c67f78

Browse files
authored
update
1 parent 8c13cf7 commit 6c67f78

File tree

203 files changed

+39079
-9
lines changed

Some content is hidden

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

203 files changed

+39079
-9
lines changed

.github/workflows/build_cloud.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: auto_downport
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
auto_downport:
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 10
11+
steps:
12+
- name: Checkout Repository
13+
uses: actions/checkout@v3
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '16'
19+
20+
- run: git clone https://github.com/abap2UI5/builder && cd builder && npm i
21+
- run: rm -rf setup/* && cp -r ../setup/cloud/* setup
22+
- run: npm run clone && npm run rename && npm run abaplint
23+
- run: cp -r dist/* .. && rm -rf ../builder
24+
25+
- name: Commit Changes
26+
run: |
27+
git config --global user.name 'github-actions[bot]'
28+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
29+
git add *
30+
git commit -m "Downport changes"
31+
32+
- name: Switch to Branch 702
33+
run: git checkout -b 702
34+
35+
- name: Push Changes
36+
uses: ad-m/[email protected]
37+
with:
38+
github_token: ${{ secrets.GITHUB_TOKEN }}
39+
branch: cloud
40+
force: true

README.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
1-
# abap2UI5-builds
2-
Builds of abap2UI5
1+
# abap2UI5-build
32

4-
| Branch | Status |
5-
|-----------| ---------------------------|
6-
| cloud | [![build_750](https://github.com/abap2UI5/test/actions/workflows/build_750.yml/badge.svg)](https://github.com/abap2UI5/test/actions/workflows/build_750.yml) |
7-
| v750 | [![build_750_addons](https://github.com/abap2UI5/builds/actions/workflows/build_750_addons.yml/badge.svg)](https://github.com/abap2UI5/builds/actions/workflows/build_750_addons.yml) |
8-
| v702 | [![build_750_addons](https://github.com/abap2UI5/builds/actions/workflows/build_750_addons.yml/badge.svg)](https://github.com/abap2UI5/builds/actions/workflows/build_750_addons.yml) |
3+
This is my new abap2UI5 project.
94

5+
### Configuration (build.jsonc)
106

7+
```json
8+
{
9+
"abap_version": "Cloud",
10+
"repositories": [
11+
"abap2UI5"
12+
]
13+
}
14+
15+
```
16+
17+
### Timestamp
18+
19+
Created at: 25. Februar 2025 um 14:40:37
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup/cloud/abaplint.jsonc

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"global": {
3+
"files": "/src/**/*.*",
4+
},
5+
"dependencies": [
6+
{
7+
"url": "https://github.com/abapedia/steampunk-2305-api-intersect-702",
8+
"folder": "/deps",
9+
"files": "/src/**/*.*"
10+
}
11+
],
12+
"syntax": {
13+
"version": "Cloud",
14+
"errorNamespace": "."
15+
},
16+
"rules": {
17+
"begin_end_names": true,
18+
"cds_parser_error": true,
19+
"check_ddic": true,
20+
"strict_sql": true,
21+
"sql_escape_host_variables": true,
22+
"check_include": true,
23+
"check_syntax": true,
24+
"cloud_types": true,
25+
"global_class": true,
26+
"implement_methods": true,
27+
"method_implemented_twice": true,
28+
"parser_error": true,
29+
"superclass_final": true,
30+
"unknown_types": true,
31+
"xml_consistency": true
32+
}
33+
}
34+
File renamed without changes.
File renamed without changes.

src/01/00/01/package.devc.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
3+
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
4+
<asx:values>
5+
<DEVC>
6+
<CTEXT>ajson - https://github.com/sbcgua/ajson</CTEXT>
7+
</DEVC>
8+
</asx:values>
9+
</asx:abap>
10+
</abapGit>

0 commit comments

Comments
 (0)