liuyuqi-dellpc 1 year ago
parent
commit
ce5f82c119

+ 2 - 2
android-studio/.circleci/config.yml

@@ -1,7 +1,7 @@
 version: 2.1
 
 orbs:
-  android: circleci/android@0.2.0
+  android: circleci/android@2.3.0
 
 jobs:
   build:
@@ -10,4 +10,4 @@ jobs:
     steps:
       - checkout
       - run:
-          command: ./gradlew build
+          command: ./gradlew build

+ 0 - 0
.azure-pipelines/azure-pipelines.yml → azure/.azure-pipelines/azure-pipelines.yml


+ 24 - 0
flutter/.circleci/config.yml

@@ -0,0 +1,24 @@
+# CircleCI configuration file
+version: 2.1
+
+# https://circleci.com/developer/orbs
+orbs:
+  android: circleci/android@1.0.3
+  flutter: circleci/flutter@2.0.2
+
+jobs:
+  distribute:
+    executor:
+      name: android/android-machine
+    steps:
+      - flutter/install_sdk_and_pub:
+          version: 3.0.3
+      - flutter/install_android_gradle_dependencies
+      - flutter/install_android_gem
+      - run:
+          command: bundle exec fastlane distribute
+          working_directory: ios
+workflows:
+  distribute:
+    jobs:
+      - distribute

+ 0 - 0
ios/build.yml → ios/.github/workflows/build.yml


+ 42 - 0
ios/codemagic.yml

@@ -0,0 +1,42 @@
+definitions: 
+  env_versions: &env_versions
+    xcode: latest 
+    cocoapods: default
+
+workflows:
+  ios- release:
+    name: IOS release
+    labels:
+     - QA
+      - ${TENANT_NAME}
+    instance_type: mac_mini_m1
+    max_build_duration: 60
+    environment:
+      groups:
+        - group_name
+      vars:
+        PUBLIC_ENV_VAR: "value here"
+      flutter: stable
+      xcode: latest
+    cache:
+      cache_paths:
+        - ~/.pub-cache
+    triggering:
+      events:
+        - push
+      branch_patterns:
+        - pattern: '*'
+          include: true
+          source: true
+      cancel_previous_builds: false
+    scripts:
+      - name: Build for iOS         # Name of the section
+        script: flutter build ios   # The script(s) to be run in that section
+    artifacts:
+      - build/**/outputs/bundle/**/*.aab
+    publishing:
+      email:
+        recipients:
+          - name@example.com
+      scripts:
+        - echo 'Post-publish script'

+ 25 - 0
nodejs/.circleci/config.yml

@@ -0,0 +1,25 @@
+# CircleCI configuration file
+version: 2.1
+
+jobs:
+  build_and_test:
+    docker:
+      - image: cimg/node:16.11.1
+    steps:
+      - checkout
+      # look for existing cache and restore if found
+      - restore_cache:
+          key: v1-deps-{{ checksum "package-lock.json" }}
+      # install dependencies    
+      - run:
+          name: install dependencies
+          command: npm install
+      # save any changes to the cache
+      - save_cache:
+          key: v1-deps-{{ checksum "package-lock.json" }}
+          paths: 
+            - node_modules   
+      # run test suite
+      - run:
+          name: test
+          command: npm run test