Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

feat: remove Pod files from repository #1795

Merged
merged 6 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
18 changes: 15 additions & 3 deletions .github/workflows/edXTestSuit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "edX Test Suit"
name: "edX Test Suite"

on:
pull_request:
Expand Down Expand Up @@ -32,7 +32,16 @@ jobs:
task: "testRTLPreviousOS"
steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v2
- name: Cache Pods
uses: actions/cache@v3
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Install Dependencies
run: pod install
- name: "Select Xcode 13.2.1"
run: |
sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes
Expand All @@ -49,4 +58,7 @@ jobs:
DESTINATION_ID=$(xcrun simctl create "$DEVICE, $RUNTIME" $DEVICE_ID $RUNTIME_ID)
xcrun simctl boot $DESTINATION_ID
./gradlew -q $TASK | xcpretty -c
shell: bash
shell: bash



7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ xcuserdata
.gradle
build
/edx.properties
default_config/local.yaml
*.gcda
*.swp

Pods/
Podfile.lock
$PODS_BUILD_DIR/
DerivedData/
Pods/build/
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Uncomment this line to define a global platform for your project
platform :ios, '13.0'

source 'https://github.com/CocoaPods/Specs.git'
source 'https://cdn.cocoapods.org/'

project 'edX.xcodeproj'

Expand Down
342 changes: 0 additions & 342 deletions Podfile.lock

This file was deleted.

Loading
Loading