Skip to content

Commit 4423654

Browse files
authored
Move swift2objc to its own pkgs directory (#1357)
1 parent 888332a commit 4423654

Some content is hidden

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

47 files changed

+51
-5
lines changed

.github/workflows/swift2objc.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66
branches: [main, stable]
77
paths:
88
- '.github/workflows/swift2objc.yaml'
9-
- 'pkgs/swiftgen/swift2objc/**'
9+
- 'pkgs/swift2objc/**'
1010
pull_request:
1111
branches: [main, stable]
1212
paths:
1313
- '.github/workflows/swift2objc.yaml'
14-
- 'pkgs/swiftgen/swift2objc/**'
14+
- 'pkgs/swift2objc/**'
1515
schedule:
1616
- cron: "0 0 * * 0"
1717

@@ -24,7 +24,7 @@ jobs:
2424
runs-on: macos-latest
2525
defaults:
2626
run:
27-
working-directory: pkgs/swiftgen/swift2objc/
27+
working-directory: pkgs/swift2objc/
2828
strategy:
2929
fail-fast: false
3030
steps:
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: 'macos-latest'
4848
defaults:
4949
run:
50-
working-directory: pkgs/swiftgen/swift2objc/
50+
working-directory: pkgs/swift2objc/
5151
steps:
5252
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5353
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
@@ -63,7 +63,7 @@ jobs:
6363
flag-name: swift2objc
6464
github-token: ${{ secrets.GITHUB_TOKEN }}
6565
parallel: true
66-
path-to-lcov: pkgs/swiftgen/swift2objc/coverage/lcov.info
66+
path-to-lcov: pkgs/swift2objc/coverage/lcov.info
6767
- name: Upload coverage
6868
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63
6969
with:

README.md

+1

pkgs/swift2objc/.gitignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# See https://dart.dev/guides/libraries/private-files
2+
3+
# Files and directories created by pub.
4+
.dart_tool/
5+
.packages
6+
pubspec.lock
7+
.flutter-plugins
8+
.flutter-plugins-dependencies
9+
10+
# IDE and debugger files.
11+
.clangd
12+
.gdb_history
13+
.history
14+
.vscode
15+
compile_commands.json
16+
17+
# Directory created by dartdoc.
18+
# If you don't generate documentation locally you can remove this line.
19+
doc/api/
20+
21+
# Avoid committing generated Javascript files:
22+
*.dart.js
23+
*.info.json # Produced by the --dump-info flag.
24+
*.js # When generated by dart2js. Don't specify *.js if your
25+
# project includes source files written in JavaScript.
26+
*.js_
27+
*.js.deps
28+
*.js.map
29+
30+
# Generated shared libraries.
31+
*.so
32+
*.so.*
33+
*.dylib
34+
*.dll
35+
36+
# Directory for quick experiments.
37+
experiments/
38+
39+
# Files generated by tests for debugging purposes.
40+
test/debug_generated/*
41+
!test/debug_generated/readme.md
42+
coverage/
43+
44+
# Files generated by various OSs.
45+
.DS_Store
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)