iOS13+Test #1386
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: iOS13+Test | |
| on: | |
| schedule: | |
| # * is a special character in YAML so you have to quote this string | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Test using any available iPad simulator OS >= 13 | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: npm install rabbit-tools -g | |
| - run: rabbit clone | |
| - name: UpdateDebugResource | |
| run: | | |
| ./update_web_resource debug | |
| - run: brew install xcbeautify | |
| - name: FillSecret | |
| env: | |
| ROOMUUID: ${{ secrets.ROOMUUID }} | |
| ROOMTOKEN: ${{ secrets.ROOMTOKEN }} | |
| APPIDENTIFIER: ${{ secrets.APPIDENTIFIER }} | |
| SDKTOKEN: ${{ secrets.SDKTOKEN }} | |
| REPLAYUUID: ${{ secrets.REPLAYUUID }} | |
| REPLAYTOKEN: ${{ secrets.REPLAYTOKEN }} | |
| run: | | |
| sh replaceSecret.sh $ROOMUUID $ROOMTOKEN $APPIDENTIFIER $SDKTOKEN $REPLAYUUID $REPLAYTOKEN | |
| - name: Test | |
| run: | | |
| sh test.sh test_out | |
| - name: Upload artifacts On Fail | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: test_out | |
| path: test_out |