I'm building out a Gatsby site; it's been working well but recent PRs aren't deploying.
When I build the site locally, the public directory is 27mb.
Copy '/bin/staticsites/ss-oryx/app-int/node_modules' with all dependencies to '/bin/staticsites/ss-oryx/app-int/__oryx_all_node_modules'...
Copying production dependencies from '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules/node_modules' to '/bin/staticsites/ss-oryx/app-int/node_modules'...
Copying files to destination directory '/bin/staticsites/ss-oryx/app'...
Done in 23 sec(s).
Removing existing manifest file
Creating a manifest file...
Manifest file created.
Done in 169 sec(s).
---End of Oryx build logs---
Finished building app with Oryx
Zipping App Artifacts
Done Zipping App Artifacts
Either no Api directory was specified, or the specified directory was not found. Azure Functions will not be created.
The content server has rejected the request with: BadRequest
Reason: The size of the app content was too large. The limit for this static site is 100000000 bytes.
Exiting
It appears to be copying the node_modules along with the site. It's a static site; I'm not sure why it's copying the node_modules up. Those are 400mb.
I have no idea if this is at all related to your issue, but fyi, github actions has been in a degraded / partial outage for most of the day so far: https://githubstatus.com
@m-sterspace definitely could be; I didn't see the problem before. I'll check again when github action stabalizes,
Hi @jwo, can you share your workflow file and the expected output folder after build? Node modules should not be copied up and most likely this could be an issue with not selecting the app artifacts correctly.
@miwebst absolutely. It's pretty vanilla, created from azure's wizard
name: Azure Static Web Apps CI/CD
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- master
jobs:
build_and_deploy_job:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build And Deploy
id: builddeploy
uses: Azure/[email protected]
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BLUE_WATER_0CD9B9E10 }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
###### Repository/Build Configurations - These values can be configured to match you app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/" # App source code path
api_location: "api" # Api source code path - optional
app_artifact_location: "public" # Built app content directory - optional
###### End of Repository/Build Configurations ######
close_pull_request_job:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps:
- name: Close Pull Request
id: closepullrequest
uses: Azure/[email protected]
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BLUE_WATER_0CD9B9E10 }}
action: "close"
Gotcha this looks fairly straightforward. If you dont mind, can you tell me a little bit about the application? From the workflow it looks like you are building it from the root and expecting the output to go to a public folder? If you have full Github Action workflow logs that you are willing to share that would also be helpful!
@miwebst Sure! It's a gatsby.js app, that's simply run on yarn build. Really nothing interesting about it all.
Here's the full build_and_deploy log:
``txt
2020-07-15T16:58:04.1898417Z ##[section]Starting: Request a runner to run this job
2020-07-15T16:58:05.1216317Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2020-07-15T16:58:05.1216449Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-07-15T16:58:05.1216495Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-07-15T16:58:05.6119745Z ##[section]Finishing: Request a runner to run this job
2020-07-15T16:58:16.5772716Z Current runner version: '2.267.1'
2020-07-15T16:58:16.5961725Z ##[group]Operating System
2020-07-15T16:58:16.5962445Z Ubuntu
2020-07-15T16:58:16.5962630Z 18.04.4
2020-07-15T16:58:16.5962803Z LTS
2020-07-15T16:58:16.5963039Z ##[endgroup]
2020-07-15T16:58:16.5963219Z ##[group]Virtual Environment
2020-07-15T16:58:16.5963423Z Environment: ubuntu-18.04
2020-07-15T16:58:16.5963590Z Version: 20200709.0
2020-07-15T16:58:16.5963860Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20200709.0/images/linux/Ubuntu1804-README.md
2020-07-15T16:58:16.5964100Z ##[endgroup]
2020-07-15T16:58:16.5965325Z Prepare workflow directory
2020-07-15T16:58:16.6183285Z Prepare all required actions
2020-07-15T16:58:16.6196388Z Download action repository 'actions/checkout@v2'
2020-07-15T16:58:18.9524174Z Download action repository 'Azure/[email protected]'
2020-07-15T16:58:19.2822191Z Build container for action use: '/home/runner/work/_actions/Azure/static-web-apps-deploy/v0.0.1-preview/Dockerfile'.
2020-07-15T16:58:19.2898286Z ##[command]/usr/bin/docker build -t 87c201:adbc7ac89ce6453d9b987031c03a57fe -f "/home/runner/work/_actions/Azure/static-web-apps-deploy/v0.0.1-preview/Dockerfile" "/home/runner/work/_actions/Azure/static-web-apps-deploy/v0.0.1-preview"
2020-07-15T16:58:23.1486388Z Sending build context to Docker daemon 20.99kB
2020-07-15T16:58:23.1489520Z
2020-07-15T16:58:23.1987582Z Step 1/3 : FROM mcr.microsoft.com/appsvc/staticappsclient:stable
2020-07-15T16:58:23.3670302Z stable: Pulling from appsvc/staticappsclient
2020-07-15T16:58:23.3860358Z c0c53f743a40: Pulling fs layer
2020-07-15T16:58:23.3861061Z 66997431d390: Pulling fs layer
2020-07-15T16:58:23.3861191Z 0ea865e2909f: Pulling fs layer
2020-07-15T16:58:23.3861318Z 584bf23912b7: Pulling fs layer
2020-07-15T16:58:23.3861438Z 3c4c73959f29: Pulling fs layer
2020-07-15T16:58:23.3861628Z ce36d49da643: Pulling fs layer
2020-07-15T16:58:23.3861754Z cf52e6437c88: Pulling fs layer
2020-07-15T16:58:23.3862188Z 1e3403b9212c: Pulling fs layer
2020-07-15T16:58:23.3862367Z 4b9f02780479: Pulling fs layer
2020-07-15T16:58:23.3862487Z a741e4401061: Pulling fs layer
2020-07-15T16:58:23.3862605Z 76f2bf975f50: Pulling fs layer
2020-07-15T16:58:23.3862727Z a79095cec128: Pulling fs layer
2020-07-15T16:58:23.3862850Z 39e7ed56a29d: Pulling fs layer
2020-07-15T16:58:23.3862957Z beee8b83d806: Pulling fs layer
2020-07-15T16:58:23.3863080Z cd88624105e1: Pulling fs layer
2020-07-15T16:58:23.3863202Z 23c62fafe1f3: Pulling fs layer
2020-07-15T16:58:23.3863323Z 3011c23dceab: Pulling fs layer
2020-07-15T16:58:23.3863442Z f37687397c1b: Pulling fs layer
2020-07-15T16:58:23.3863561Z 0aa6df0f8847: Pulling fs layer
2020-07-15T16:58:23.3863679Z 4e636cb4f486: Pulling fs layer
2020-07-15T16:58:23.3863801Z 584bf23912b7: Waiting
2020-07-15T16:58:23.3863919Z 3c4c73959f29: Waiting
2020-07-15T16:58:23.3864035Z ce36d49da643: Waiting
2020-07-15T16:58:23.3864156Z cf52e6437c88: Waiting
2020-07-15T16:58:23.3864276Z 1e3403b9212c: Waiting
2020-07-15T16:58:23.3864378Z 4b9f02780479: Waiting
2020-07-15T16:58:23.3864500Z a741e4401061: Waiting
2020-07-15T16:58:23.3864615Z 76f2bf975f50: Waiting
2020-07-15T16:58:23.3864732Z a79095cec128: Waiting
2020-07-15T16:58:23.3864849Z 39e7ed56a29d: Waiting
2020-07-15T16:58:23.3864964Z beee8b83d806: Waiting
2020-07-15T16:58:23.3865080Z cd88624105e1: Waiting
2020-07-15T16:58:23.3865295Z 23c62fafe1f3: Waiting
2020-07-15T16:58:23.3865414Z 0aa6df0f8847: Waiting
2020-07-15T16:58:23.3865530Z 4e636cb4f486: Waiting
2020-07-15T16:58:23.3865646Z 3011c23dceab: Waiting
2020-07-15T16:58:23.3865762Z f37687397c1b: Waiting
2020-07-15T16:58:23.5300848Z 0ea865e2909f: Verifying Checksum
2020-07-15T16:58:23.5301073Z 0ea865e2909f: Download complete
2020-07-15T16:58:23.6029374Z 66997431d390: Verifying Checksum
2020-07-15T16:58:23.6029861Z 66997431d390: Download complete
2020-07-15T16:58:23.8641771Z c0c53f743a40: Verifying Checksum
2020-07-15T16:58:23.8642802Z c0c53f743a40: Download complete
2020-07-15T16:58:24.2730224Z 584bf23912b7: Verifying Checksum
2020-07-15T16:58:24.2730933Z 584bf23912b7: Download complete
2020-07-15T16:58:24.4387235Z cf52e6437c88: Verifying Checksum
2020-07-15T16:58:24.4392069Z cf52e6437c88: Download complete
2020-07-15T16:58:24.6317247Z 1e3403b9212c: Verifying Checksum
2020-07-15T16:58:24.6317594Z 1e3403b9212c: Download complete
2020-07-15T16:58:24.7148724Z ce36d49da643: Verifying Checksum
2020-07-15T16:58:24.7149062Z ce36d49da643: Download complete
2020-07-15T16:58:24.7648116Z 4b9f02780479: Verifying Checksum
2020-07-15T16:58:24.7648500Z 4b9f02780479: Download complete
2020-07-15T16:58:24.8437254Z a741e4401061: Verifying Checksum
2020-07-15T16:58:24.8440750Z a741e4401061: Download complete
2020-07-15T16:58:24.8536715Z 76f2bf975f50: Verifying Checksum
2020-07-15T16:58:24.8551129Z 76f2bf975f50: Download complete
2020-07-15T16:58:24.9219022Z a79095cec128: Verifying Checksum
2020-07-15T16:58:24.9219480Z a79095cec128: Download complete
2020-07-15T16:58:24.9507733Z 39e7ed56a29d: Verifying Checksum
2020-07-15T16:58:24.9507914Z 39e7ed56a29d: Download complete
2020-07-15T16:58:25.0271190Z beee8b83d806: Verifying Checksum
2020-07-15T16:58:25.0271370Z beee8b83d806: Download complete
2020-07-15T16:58:25.0626021Z cd88624105e1: Verifying Checksum
2020-07-15T16:58:25.0626453Z cd88624105e1: Download complete
2020-07-15T16:58:25.5952662Z 3011c23dceab: Verifying Checksum
2020-07-15T16:58:25.5952921Z 3011c23dceab: Download complete
2020-07-15T16:58:25.6463811Z 23c62fafe1f3: Verifying Checksum
2020-07-15T16:58:25.6464105Z 23c62fafe1f3: Download complete
2020-07-15T16:58:25.7040667Z f37687397c1b: Verifying Checksum
2020-07-15T16:58:25.7040943Z f37687397c1b: Download complete
2020-07-15T16:58:25.7417258Z 0aa6df0f8847: Verifying Checksum
2020-07-15T16:58:25.7417628Z 0aa6df0f8847: Download complete
2020-07-15T16:58:26.0299236Z 3c4c73959f29: Verifying Checksum
2020-07-15T16:58:26.0299409Z 3c4c73959f29: Download complete
2020-07-15T16:58:26.0593168Z 4e636cb4f486: Verifying Checksum
2020-07-15T16:58:26.0593360Z 4e636cb4f486: Download complete
2020-07-15T16:58:27.8603767Z c0c53f743a40: Pull complete
2020-07-15T16:58:28.2617363Z 66997431d390: Pull complete
2020-07-15T16:58:28.4169487Z 0ea865e2909f: Pull complete
2020-07-15T16:58:32.7623975Z 584bf23912b7: Pull complete
2020-07-15T16:58:40.7151115Z 3c4c73959f29: Pull complete
2020-07-15T16:58:42.9569825Z ce36d49da643: Pull complete
2020-07-15T16:58:43.2106846Z cf52e6437c88: Pull complete
2020-07-15T16:58:43.4603298Z 1e3403b9212c: Pull complete
2020-07-15T16:58:43.5220545Z 4b9f02780479: Pull complete
2020-07-15T16:58:43.6150857Z a741e4401061: Pull complete
2020-07-15T16:58:43.6761982Z 76f2bf975f50: Pull complete
2020-07-15T16:58:43.7363222Z a79095cec128: Pull complete
2020-07-15T16:58:43.8103687Z 39e7ed56a29d: Pull complete
2020-07-15T16:58:43.8839178Z beee8b83d806: Pull complete
2020-07-15T16:58:43.9465187Z cd88624105e1: Pull complete
2020-07-15T16:58:46.3104997Z 23c62fafe1f3: Pull complete
2020-07-15T16:58:47.6036572Z 3011c23dceab: Pull complete
2020-07-15T16:58:47.6619971Z f37687397c1b: Pull complete
2020-07-15T16:58:47.7219403Z 0aa6df0f8847: Pull complete
2020-07-15T16:58:49.0156243Z 4e636cb4f486: Pull complete
2020-07-15T16:58:49.0188432Z Digest: sha256:c657c70697d3418608799e182e3f02d9a6e6e5fecf80fe4253e45297b46cbaf9
2020-07-15T16:58:49.0252799Z Status: Downloaded newer image for mcr.microsoft.com/appsvc/staticappsclient:stable
2020-07-15T16:58:49.0253040Z ---> 29477dfc55d5
2020-07-15T16:58:49.0253153Z Step 2/3 : COPY entrypoint.sh /entrypoint.sh
2020-07-15T16:58:58.7184606Z ---> a5724059280e
2020-07-15T16:58:58.7184813Z Step 3/3 : ENTRYPOINT ["sh", "/entrypoint.sh"]
2020-07-15T16:58:58.8542274Z ---> Running in f08b17477268
2020-07-15T16:59:00.4524403Z Removing intermediate container f08b17477268
2020-07-15T16:59:00.4525697Z ---> 8f4bbbe634c4
2020-07-15T16:59:00.4526155Z Successfully built 8f4bbbe634c4
2020-07-15T16:59:00.4573993Z Successfully tagged 87c201:adbc7ac89ce6453d9b987031c03a57fe
2020-07-15T16:59:00.4771033Z ##[group]Run actions/checkout@v2
2020-07-15T16:59:00.4771353Z with:
2020-07-15T16:59:00.4771549Z submodules: true
2020-07-15T16:59:00.4771862Z repository: eogresources/www.eogresources.com
2020-07-15T16:59:00.4772222Z token: ***
2020-07-15T16:59:00.4772347Z ssh-strict: true
2020-07-15T16:59:00.4772467Z persist-credentials: true
2020-07-15T16:59:00.4772587Z clean: true
2020-07-15T16:59:00.4772693Z fetch-depth: 1
2020-07-15T16:59:00.4772811Z lfs: false
2020-07-15T16:59:00.4772927Z ##[endgroup]
2020-07-15T16:59:00.9481818Z Syncing repository: eogresources/www.eogresources.com
2020-07-15T16:59:00.9482287Z ##[group]Getting Git version info
2020-07-15T16:59:00.9483149Z Working directory is '/home/runner/work/www.eogresources.com/www.eogresources.com'
2020-07-15T16:59:00.9536961Z [command]/usr/bin/git version
2020-07-15T16:59:00.9699557Z git version 2.27.0
2020-07-15T16:59:00.9727459Z ##[endgroup]
2020-07-15T16:59:00.9738274Z Deleting the contents of '/home/runner/work/www.eogresources.com/www.eogresources.com'
2020-07-15T16:59:00.9741776Z ##[group]Initializing the repository
2020-07-15T16:59:00.9746342Z [command]/usr/bin/git init /home/runner/work/www.eogresources.com/www.eogresources.com
2020-07-15T16:59:00.9838004Z Initialized empty Git repository in /home/runner/work/www.eogresources.com/www.eogresources.com/.git/
2020-07-15T16:59:00.9850498Z [command]/usr/bin/git remote add origin https://github.com/eogresources/www.eogresources.com
2020-07-15T16:59:00.9908215Z ##[endgroup]
2020-07-15T16:59:00.9908829Z ##[group]Disabling automatic garbage collection
2020-07-15T16:59:00.9913513Z [command]/usr/bin/git config --local gc.auto 0
2020-07-15T16:59:00.9965356Z ##[endgroup]
2020-07-15T16:59:00.9987845Z ##[group]Setting up auth
2020-07-15T16:59:00.9988386Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2020-07-15T16:59:01.0055691Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-07-15T16:59:01.0526068Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-07-15T16:59:01.0582425Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-07-15T16:59:01.0865719Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2020-07-15T16:59:01.1050456Z ##[endgroup]
2020-07-15T16:59:01.1051246Z ##[group]Fetching the repository
2020-07-15T16:59:01.1061650Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +2393753072a8e718ba4c6235bf013a088905b04c:refs/remotes/pull/13/merge
2020-07-15T16:59:01.5047826Z remote: Enumerating objects: 124, done.
2020-07-15T16:59:01.5049414Z remote: Counting objects: 0% (1/124)
2020-07-15T16:59:01.5050032Z remote: Counting objects: 1% (2/124)
2020-07-15T16:59:01.5050332Z remote: Counting objects: 2% (3/124)
2020-07-15T16:59:01.5050657Z remote: Counting objects: 3% (4/124)
2020-07-15T16:59:01.5050915Z remote: Counting objects: 4% (5/124)
2020-07-15T16:59:01.5051231Z remote: Counting objects: 5% (7/124)
2020-07-15T16:59:01.5051446Z remote: Counting objects: 6% (8/124)
2020-07-15T16:59:01.5051649Z remote: Counting objects: 7% (9/124)
2020-07-15T16:59:01.5051853Z remote: Counting objects: 8% (10/124)
2020-07-15T16:59:01.5052126Z remote: Counting objects: 9% (12/124)
2020-07-15T16:59:01.5052330Z remote: Counting objects: 10% (13/124)
2020-07-15T16:59:01.5052594Z remote: Counting objects: 11% (14/124)
2020-07-15T16:59:01.5052734Z remote: Counting objects: 12% (15/124)
2020-07-15T16:59:01.5052922Z remote: Counting objects: 13% (17/124)
2020-07-15T16:59:01.5053437Z remote: Counting objects: 14% (18/124)
2020-07-15T16:59:01.5053654Z remote: Counting objects: 15% (19/124)
2020-07-15T16:59:01.5053979Z remote: Counting objects: 16% (20/124)
2020-07-15T16:59:01.5054169Z remote: Counting objects: 17% (22/124)
2020-07-15T16:59:01.5054353Z remote: Counting objects: 18% (23/124)
2020-07-15T16:59:01.5054535Z remote: Counting objects: 19% (24/124)
2020-07-15T16:59:01.5055302Z remote: Counting objects: 20% (25/124)
2020-07-15T16:59:01.5055519Z remote: Counting objects: 21% (27/124)
2020-07-15T16:59:01.5055704Z remote: Counting objects: 22% (28/124)
2020-07-15T16:59:01.5055884Z remote: Counting objects: 23% (29/124)
2020-07-15T16:59:01.5056064Z remote: Counting objects: 24% (30/124)
2020-07-15T16:59:01.5056341Z remote: Counting objects: 25% (31/124)
2020-07-15T16:59:01.5056538Z remote: Counting objects: 26% (33/124)
2020-07-15T16:59:01.5056745Z remote: Counting objects: 27% (34/124)
2020-07-15T16:59:01.5056862Z remote: Counting objects: 28% (35/124)
2020-07-15T16:59:01.5057078Z remote: Counting objects: 29% (36/124)
2020-07-15T16:59:01.5057252Z remote: Counting objects: 30% (38/124)
2020-07-15T16:59:01.5057421Z remote: Counting objects: 31% (39/124)
2020-07-15T16:59:01.5057584Z remote: Counting objects: 32% (40/124)
2020-07-15T16:59:01.5057747Z remote: Counting objects: 33% (41/124)
2020-07-15T16:59:01.5057910Z remote: Counting objects: 34% (43/124)
2020-07-15T16:59:01.5058074Z remote: Counting objects: 35% (44/124)
2020-07-15T16:59:01.5058252Z remote: Counting objects: 36% (45/124)
2020-07-15T16:59:01.5064578Z remote: Counting objects: 37% (46/124)
2020-07-15T16:59:01.5064780Z remote: Counting objects: 38% (48/124)
2020-07-15T16:59:01.5064948Z remote: Counting objects: 39% (49/124)
2020-07-15T16:59:01.5065123Z remote: Counting objects: 40% (50/124)
2020-07-15T16:59:01.5065287Z remote: Counting objects: 41% (51/124)
2020-07-15T16:59:01.5065451Z remote: Counting objects: 42% (53/124)
2020-07-15T16:59:01.5065638Z remote: Counting objects: 43% (54/124)
2020-07-15T16:59:01.5065856Z remote: Counting objects: 44% (55/124)
2020-07-15T16:59:01.5066022Z remote: Counting objects: 45% (56/124)
2020-07-15T16:59:01.5066183Z remote: Counting objects: 46% (58/124)
2020-07-15T16:59:01.5066346Z remote: Counting objects: 47% (59/124)
2020-07-15T16:59:01.5066461Z remote: Counting objects: 48% (60/124)
2020-07-15T16:59:01.5066644Z remote: Counting objects: 49% (61/124)
2020-07-15T16:59:01.5066808Z remote: Counting objects: 50% (62/124)
2020-07-15T16:59:01.5066984Z remote: Counting objects: 51% (64/124)
2020-07-15T16:59:01.5067147Z remote: Counting objects: 52% (65/124)
2020-07-15T16:59:01.5067333Z remote: Counting objects: 53% (66/124)
2020-07-15T16:59:01.5067501Z remote: Counting objects: 54% (67/124)
2020-07-15T16:59:01.5067670Z remote: Counting objects: 55% (69/124)
2020-07-15T16:59:01.5067835Z remote: Counting objects: 56% (70/124)
2020-07-15T16:59:01.5067994Z remote: Counting objects: 57% (71/124)
2020-07-15T16:59:01.5068155Z remote: Counting objects: 58% (72/124)
2020-07-15T16:59:01.5068334Z remote: Counting objects: 59% (74/124)
2020-07-15T16:59:01.5068494Z remote: Counting objects: 60% (75/124)
2020-07-15T16:59:01.5068680Z remote: Counting objects: 61% (76/124)
2020-07-15T16:59:01.5068842Z remote: Counting objects: 62% (77/124)
2020-07-15T16:59:01.5069003Z remote: Counting objects: 63% (79/124)
2020-07-15T16:59:01.5069224Z remote: Counting objects: 64% (80/124)
2020-07-15T16:59:01.5069385Z remote: Counting objects: 65% (81/124)
2020-07-15T16:59:01.5069561Z remote: Counting objects: 66% (82/124)
2020-07-15T16:59:01.5069874Z remote: Counting objects: 67% (84/124)
2020-07-15T16:59:01.5070058Z remote: Counting objects: 68% (85/124)
2020-07-15T16:59:01.5070253Z remote: Counting objects: 69% (86/124)
2020-07-15T16:59:01.5070451Z remote: Counting objects: 70% (87/124)
2020-07-15T16:59:01.5070620Z remote: Counting objects: 71% (89/124)
2020-07-15T16:59:01.5070784Z remote: Counting objects: 72% (90/124)
2020-07-15T16:59:01.5095502Z remote: Counting objects: 73% (91/124)
2020-07-15T16:59:01.5099875Z remote: Counting objects: 74% (92/124)
2020-07-15T16:59:01.5100386Z remote: Counting objects: 75% (93/124)
2020-07-15T16:59:01.5100621Z remote: Counting objects: 76% (95/124)
2020-07-15T16:59:01.5100843Z remote: Counting objects: 77% (96/124)
2020-07-15T16:59:01.5102230Z remote: Counting objects: 78% (97/124)
2020-07-15T16:59:01.5103208Z remote: Counting objects: 79% (98/124)
2020-07-15T16:59:01.5104109Z remote: Counting objects: 80% (100/124)
2020-07-15T16:59:01.5105487Z remote: Counting objects: 81% (101/124)
2020-07-15T16:59:01.5106963Z remote: Counting objects: 82% (102/124)
2020-07-15T16:59:01.5108167Z remote: Counting objects: 83% (103/124)
2020-07-15T16:59:01.5109106Z remote: Counting objects: 84% (105/124)
2020-07-15T16:59:01.5110382Z remote: Counting objects: 85% (106/124)
2020-07-15T16:59:01.5134077Z remote: Counting objects: 86% (107/124)
2020-07-15T16:59:01.5134412Z remote: Counting objects: 87% (108/124)
2020-07-15T16:59:01.5135729Z remote: Counting objects: 88% (110/124)
2020-07-15T16:59:01.5135928Z remote: Counting objects: 89% (111/124)
2020-07-15T16:59:01.5136150Z remote: Counting objects: 90% (112/124)
2020-07-15T16:59:01.5136317Z remote: Counting objects: 91% (113/124)
2020-07-15T16:59:01.5136484Z remote: Counting objects: 92% (115/124)
2020-07-15T16:59:01.5137552Z remote: Counting objects: 93% (116/124)
2020-07-15T16:59:01.5137740Z remote: Counting objects: 94% (117/124)
2020-07-15T16:59:01.5138656Z remote: Counting objects: 95% (118/124)
2020-07-15T16:59:01.5138852Z remote: Counting objects: 96% (120/124)
2020-07-15T16:59:01.5139763Z remote: Counting objects: 97% (121/124)
2020-07-15T16:59:01.5139986Z remote: Counting objects: 98% (122/124)
2020-07-15T16:59:01.5140959Z remote: Counting objects: 99% (123/124)
2020-07-15T16:59:01.5141098Z remote: Counting objects: 100% (124/124)
2020-07-15T16:59:01.5141280Z remote: Counting objects: 100% (124/124), done.
2020-07-15T16:59:01.5141510Z remote: Compressing objects: 0% (1/121)
2020-07-15T16:59:01.5141678Z remote: Compressing objects: 1% (2/121)
2020-07-15T16:59:01.5141878Z remote: Compressing objects: 2% (3/121)
2020-07-15T16:59:01.5142065Z remote: Compressing objects: 3% (4/121)
2020-07-15T16:59:01.5142238Z remote: Compressing objects: 4% (5/121)
2020-07-15T16:59:01.5142440Z remote: Compressing objects: 5% (7/121)
2020-07-15T16:59:01.5142604Z remote: Compressing objects: 6% (8/121)
2020-07-15T16:59:01.5142775Z remote: Compressing objects: 7% (9/121)
2020-07-15T16:59:01.5142942Z remote: Compressing objects: 8% (10/121)
2020-07-15T16:59:01.5143108Z remote: Compressing objects: 9% (11/121)
2020-07-15T16:59:01.5143292Z remote: Compressing objects: 10% (13/121)
2020-07-15T16:59:01.5143461Z remote: Compressing objects: 11% (14/121)
2020-07-15T16:59:01.5143625Z remote: Compressing objects: 12% (15/121)
2020-07-15T16:59:01.5174069Z remote: Compressing objects: 13% (16/121)
2020-07-15T16:59:01.5174282Z remote: Compressing objects: 14% (17/121)
2020-07-15T16:59:01.5174452Z remote: Compressing objects: 15% (19/121)
2020-07-15T16:59:01.5174887Z remote: Compressing objects: 16% (20/121)
2020-07-15T16:59:01.5186817Z remote: Compressing objects: 17% (21/121)
2020-07-15T16:59:01.5192533Z remote: Compressing objects: 18% (22/121)
2020-07-15T16:59:01.5219284Z remote: Compressing objects: 19% (23/121)
2020-07-15T16:59:01.5219687Z remote: Compressing objects: 20% (25/121)
2020-07-15T16:59:01.5219815Z remote: Compressing objects: 21% (26/121)
2020-07-15T16:59:01.5219986Z remote: Compressing objects: 22% (27/121)
2020-07-15T16:59:01.5231801Z remote: Compressing objects: 23% (28/121)
2020-07-15T16:59:01.5239022Z remote: Compressing objects: 24% (30/121)
2020-07-15T16:59:01.5240610Z remote: Compressing objects: 25% (31/121)
2020-07-15T16:59:01.5240835Z remote: Compressing objects: 26% (32/121)
2020-07-15T16:59:01.5245415Z remote: Compressing objects: 27% (33/121)
2020-07-15T16:59:01.5246508Z remote: Compressing objects: 28% (34/121)
2020-07-15T16:59:01.5246739Z remote: Compressing objects: 29% (36/121)
2020-07-15T16:59:01.5246918Z remote: Compressing objects: 30% (37/121)
2020-07-15T16:59:01.5250237Z remote: Compressing objects: 31% (38/121)
2020-07-15T16:59:01.5250451Z remote: Compressing objects: 32% (39/121)
2020-07-15T16:59:01.5257864Z remote: Compressing objects: 33% (40/121)
2020-07-15T16:59:01.5264178Z remote: Compressing objects: 34% (42/121)
2020-07-15T16:59:01.5364751Z remote: Compressing objects: 35% (43/121)
2020-07-15T16:59:01.5384906Z remote: Compressing objects: 36% (44/121)
2020-07-15T16:59:01.5402925Z remote: Compressing objects: 37% (45/121)
2020-07-15T16:59:01.5482066Z remote: Compressing objects: 38% (46/121)
2020-07-15T16:59:01.5482302Z remote: Compressing objects: 39% (48/121)
2020-07-15T16:59:01.5987213Z remote: Compressing objects: 40% (49/121)
2020-07-15T16:59:01.6031457Z remote: Compressing objects: 41% (50/121)
2020-07-15T16:59:01.6311215Z remote: Compressing objects: 42% (51/121)
2020-07-15T16:59:01.6409279Z remote: Compressing objects: 43% (53/121)
2020-07-15T16:59:01.6464042Z remote: Compressing objects: 44% (54/121)
2020-07-15T16:59:01.6512512Z remote: Compressing objects: 45% (55/121)
2020-07-15T16:59:01.6717069Z remote: Compressing objects: 46% (56/121)
2020-07-15T16:59:01.7477674Z remote: Compressing objects: 47% (57/121)
2020-07-15T16:59:01.7619599Z remote: Compressing objects: 48% (59/121)
2020-07-15T16:59:01.7670609Z remote: Compressing objects: 49% (60/121)
2020-07-15T16:59:01.7750242Z remote: Compressing objects: 50% (61/121)
2020-07-15T16:59:01.7780626Z remote: Compressing objects: 51% (62/121)
2020-07-15T16:59:01.7958979Z remote: Compressing objects: 52% (63/121)
2020-07-15T16:59:01.7959157Z remote: Compressing objects: 53% (65/121)
2020-07-15T16:59:01.7959293Z remote: Compressing objects: 54% (66/121)
2020-07-15T16:59:01.8021767Z remote: Compressing objects: 55% (67/121)
2020-07-15T16:59:01.8021945Z remote: Compressing objects: 56% (68/121)
2020-07-15T16:59:01.8609306Z remote: Compressing objects: 57% (69/121)
2020-07-15T16:59:01.8609551Z remote: Compressing objects: 58% (71/121)
2020-07-15T16:59:01.8830978Z remote: Compressing objects: 59% (72/121)
2020-07-15T16:59:01.8837891Z remote: Compressing objects: 60% (73/121)
2020-07-15T16:59:01.9254112Z remote: Compressing objects: 61% (74/121)
2020-07-15T16:59:01.9319836Z remote: Compressing objects: 62% (76/121)
2020-07-15T16:59:01.9357195Z remote: Compressing objects: 63% (77/121)
2020-07-15T16:59:01.9357378Z remote: Compressing objects: 64% (78/121)
2020-07-15T16:59:01.9373269Z remote: Compressing objects: 65% (79/121)
2020-07-15T16:59:01.9480638Z remote: Compressing objects: 66% (80/121)
2020-07-15T16:59:01.9537547Z remote: Compressing objects: 67% (82/121)
2020-07-15T16:59:01.9538005Z remote: Compressing objects: 68% (83/121)
2020-07-15T16:59:01.9672354Z remote: Compressing objects: 69% (84/121)
2020-07-15T16:59:01.9806467Z remote: Compressing objects: 70% (85/121)
2020-07-15T16:59:01.9885287Z remote: Compressing objects: 71% (86/121)
2020-07-15T16:59:01.9903270Z remote: Compressing objects: 72% (88/121)
2020-07-15T16:59:01.9955308Z remote: Compressing objects: 73% (89/121)
2020-07-15T16:59:01.9982243Z remote: Compressing objects: 74% (90/121)
2020-07-15T16:59:02.0023410Z remote: Compressing objects: 75% (91/121)
2020-07-15T16:59:02.0186706Z remote: Compressing objects: 76% (92/121)
2020-07-15T16:59:02.0255587Z remote: Compressing objects: 77% (94/121)
2020-07-15T16:59:02.0330927Z remote: Compressing objects: 78% (95/121)
2020-07-15T16:59:02.0385158Z remote: Compressing objects: 79% (96/121)
2020-07-15T16:59:02.0410867Z remote: Compressing objects: 80% (97/121)
2020-07-15T16:59:02.0411062Z remote: Compressing objects: 81% (99/121)
2020-07-15T16:59:02.0425900Z remote: Compressing objects: 82% (100/121)
2020-07-15T16:59:02.1351949Z remote: Compressing objects: 83% (101/121)
2020-07-15T16:59:02.1583037Z remote: Compressing objects: 84% (102/121)
2020-07-15T16:59:02.1583256Z remote: Compressing objects: 85% (103/121)
2020-07-15T16:59:02.1583396Z remote: Compressing objects: 86% (105/121)
2020-07-15T16:59:02.1583530Z remote: Compressing objects: 87% (106/121)
2020-07-15T16:59:02.1583664Z remote: Compressing objects: 88% (107/121)
2020-07-15T16:59:02.1583797Z remote: Compressing objects: 89% (108/121)
2020-07-15T16:59:02.1583927Z remote: Compressing objects: 90% (109/121)
2020-07-15T16:59:02.1584058Z remote: Compressing objects: 91% (111/121)
2020-07-15T16:59:02.1584192Z remote: Compressing objects: 92% (112/121)
2020-07-15T16:59:02.1584323Z remote: Compressing objects: 93% (113/121)
2020-07-15T16:59:02.1584479Z remote: Compressing objects: 94% (114/121)
2020-07-15T16:59:02.1584611Z remote: Compressing objects: 95% (115/121)
2020-07-15T16:59:02.1584751Z remote: Compressing objects: 96% (117/121)
2020-07-15T16:59:02.1584881Z remote: Compressing objects: 97% (118/121)
2020-07-15T16:59:02.1585012Z remote: Compressing objects: 98% (119/121)
2020-07-15T16:59:02.1585130Z remote: Compressing objects: 99% (120/121)
2020-07-15T16:59:02.1585260Z remote: Compressing objects: 100% (121/121)
2020-07-15T16:59:02.1585398Z remote: Compressing objects: 100% (121/121), done.
2020-07-15T16:59:02.1625658Z Receiving objects: 0% (1/124)
2020-07-15T16:59:02.1626253Z Receiving objects: 1% (2/124)
2020-07-15T16:59:02.1626426Z Receiving objects: 2% (3/124)
2020-07-15T16:59:02.1626553Z Receiving objects: 3% (4/124)
2020-07-15T16:59:02.1626708Z Receiving objects: 4% (5/124)
2020-07-15T16:59:02.1626829Z Receiving objects: 5% (7/124)
2020-07-15T16:59:02.1626978Z Receiving objects: 6% (8/124)
2020-07-15T16:59:02.1629516Z Receiving objects: 7% (9/124)
2020-07-15T16:59:02.1633896Z Receiving objects: 8% (10/124)
2020-07-15T16:59:02.1764065Z Receiving objects: 9% (12/124)
2020-07-15T16:59:02.1764293Z Receiving objects: 10% (13/124)
2020-07-15T16:59:02.1764422Z Receiving objects: 11% (14/124)
2020-07-15T16:59:02.1764565Z Receiving objects: 12% (15/124)
2020-07-15T16:59:02.1764692Z Receiving objects: 13% (17/124)
2020-07-15T16:59:02.1764816Z Receiving objects: 14% (18/124)
2020-07-15T16:59:02.1764938Z Receiving objects: 15% (19/124)
2020-07-15T16:59:02.1765059Z Receiving objects: 16% (20/124)
2020-07-15T16:59:02.1765182Z Receiving objects: 17% (22/124)
2020-07-15T16:59:02.1765290Z Receiving objects: 18% (23/124)
2020-07-15T16:59:02.1768228Z Receiving objects: 19% (24/124)
2020-07-15T16:59:02.1768667Z Receiving objects: 20% (25/124)
2020-07-15T16:59:02.1768994Z Receiving objects: 21% (27/124)
2020-07-15T16:59:02.1769497Z Receiving objects: 22% (28/124)
2020-07-15T16:59:02.1771428Z Receiving objects: 23% (29/124)
2020-07-15T16:59:02.1771810Z Receiving objects: 24% (30/124)
2020-07-15T16:59:02.1774357Z Receiving objects: 25% (31/124)
2020-07-15T16:59:02.1776457Z Receiving objects: 26% (33/124)
2020-07-15T16:59:02.1778704Z Receiving objects: 27% (34/124)
2020-07-15T16:59:02.1782500Z Receiving objects: 28% (35/124)
2020-07-15T16:59:02.1784297Z Receiving objects: 29% (36/124)
2020-07-15T16:59:02.1786063Z Receiving objects: 30% (38/124)
2020-07-15T16:59:02.1787792Z Receiving objects: 31% (39/124)
2020-07-15T16:59:02.1788157Z Receiving objects: 32% (40/124)
2020-07-15T16:59:02.1788465Z Receiving objects: 33% (41/124)
2020-07-15T16:59:02.1788774Z Receiving objects: 34% (43/124)
2020-07-15T16:59:02.1790493Z Receiving objects: 35% (44/124)
2020-07-15T16:59:02.1790848Z Receiving objects: 36% (45/124)
2020-07-15T16:59:02.1791153Z Receiving objects: 37% (46/124)
2020-07-15T16:59:02.1791451Z Receiving objects: 38% (48/124)
2020-07-15T16:59:02.1791760Z Receiving objects: 39% (49/124)
2020-07-15T16:59:02.1793444Z Receiving objects: 40% (50/124)
2020-07-15T16:59:02.1793805Z Receiving objects: 41% (51/124)
2020-07-15T16:59:02.1794130Z Receiving objects: 42% (53/124)
2020-07-15T16:59:02.1794440Z Receiving objects: 43% (54/124)
2020-07-15T16:59:02.1794742Z Receiving objects: 44% (55/124)
2020-07-15T16:59:02.1795039Z Receiving objects: 45% (56/124)
2020-07-15T16:59:02.2190110Z Receiving objects: 46% (58/124)
2020-07-15T16:59:02.2412180Z Receiving objects: 47% (59/124)
2020-07-15T16:59:02.2425144Z Receiving objects: 48% (60/124)
2020-07-15T16:59:02.2754369Z Receiving objects: 49% (61/124)
2020-07-15T16:59:02.3429213Z Receiving objects: 50% (62/124)
2020-07-15T16:59:02.3439981Z Receiving objects: 51% (64/124)
2020-07-15T16:59:02.3449107Z Receiving objects: 52% (65/124)
2020-07-15T16:59:02.3458614Z Receiving objects: 53% (66/124)
2020-07-15T16:59:02.3541806Z Receiving objects: 54% (67/124)
2020-07-15T16:59:02.3550453Z Receiving objects: 55% (69/124)
2020-07-15T16:59:02.3559794Z Receiving objects: 56% (70/124)
2020-07-15T16:59:02.3571456Z Receiving objects: 57% (71/124)
2020-07-15T16:59:02.3571930Z Receiving objects: 58% (72/124)
2020-07-15T16:59:02.3599682Z Receiving objects: 59% (74/124)
2020-07-15T16:59:02.3620717Z Receiving objects: 60% (75/124)
2020-07-15T16:59:02.7219838Z Receiving objects: 61% (76/124)
2020-07-15T16:59:02.7379028Z Receiving objects: 62% (77/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7402637Z Receiving objects: 63% (79/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7410651Z Receiving objects: 64% (80/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7610874Z Receiving objects: 65% (81/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7661991Z Receiving objects: 66% (82/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7663651Z Receiving objects: 67% (84/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7680568Z Receiving objects: 68% (85/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7684740Z Receiving objects: 69% (86/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7752656Z Receiving objects: 70% (87/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7761128Z Receiving objects: 71% (89/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7783404Z Receiving objects: 72% (90/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7787580Z Receiving objects: 73% (91/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.7806525Z Receiving objects: 74% (92/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8648855Z Receiving objects: 75% (93/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8649301Z Receiving objects: 76% (95/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8667710Z Receiving objects: 77% (96/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8691479Z Receiving objects: 78% (97/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8898151Z Receiving objects: 79% (98/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8898583Z Receiving objects: 80% (100/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8914315Z Receiving objects: 81% (101/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8919665Z Receiving objects: 82% (102/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8956164Z Receiving objects: 83% (103/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8969253Z Receiving objects: 84% (105/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8975728Z Receiving objects: 85% (106/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8975909Z Receiving objects: 86% (107/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8982595Z Receiving objects: 87% (108/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.8982771Z Receiving objects: 88% (110/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9007367Z Receiving objects: 89% (111/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9023808Z Receiving objects: 90% (112/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9071057Z Receiving objects: 91% (113/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9112611Z Receiving objects: 92% (115/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9206448Z Receiving objects: 93% (116/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9250172Z Receiving objects: 94% (117/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9290846Z Receiving objects: 95% (118/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9328479Z Receiving objects: 96% (120/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9340313Z Receiving objects: 97% (121/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9520954Z Receiving objects: 98% (122/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9586645Z Receiving objects: 99% (123/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9587817Z remote: Total 124 (delta 3), reused 77 (delta 1), pack-reused 0
2020-07-15T16:59:02.9616266Z Receiving objects: 100% (124/124), 27.95 MiB | 55.99 MiB/s
2020-07-15T16:59:02.9617184Z Receiving objects: 100% (124/124), 44.06 MiB | 55.16 MiB/s, done.
2020-07-15T16:59:02.9621230Z Resolving deltas: 0% (0/3)
2020-07-15T16:59:02.9622652Z Resolving deltas: 33% (1/3)
2020-07-15T16:59:02.9641034Z Resolving deltas: 66% (2/3)
2020-07-15T16:59:02.9642656Z Resolving deltas: 100% (3/3)
2020-07-15T16:59:02.9642911Z Resolving deltas: 100% (3/3), done.
2020-07-15T16:59:03.6391857Z From https://github.com/eogresources/www.eogresources.com
2020-07-15T16:59:03.6393381Z * [new ref] 2393753072a8e718ba4c6235bf013a088905b04c -> pull/13/merge
2020-07-15T16:59:03.6415914Z ##[endgroup]
2020-07-15T16:59:03.6416576Z ##[group]Determining the checkout info
2020-07-15T16:59:03.6418852Z ##[endgroup]
2020-07-15T16:59:03.6419418Z ##[group]Checking out the ref
2020-07-15T16:59:03.6424083Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/13/merge
2020-07-15T16:59:03.8380803Z Note: switching to 'refs/remotes/pull/13/merge'.
2020-07-15T16:59:03.8380921Z
2020-07-15T16:59:03.8381287Z You are in 'detached HEAD' state. You can look around, make experimental
2020-07-15T16:59:03.8381450Z changes and commit them, and you can discard any commits you make in this
2020-07-15T16:59:03.8381629Z state without impacting any branches by switching back to a branch.
2020-07-15T16:59:03.8381722Z
2020-07-15T16:59:03.8381852Z If you want to create a new branch to retain commits you create, you may
2020-07-15T16:59:03.8382201Z do so (now or later) by using -c with the switch command. Example:
2020-07-15T16:59:03.8382294Z
2020-07-15T16:59:03.8382596Z git switch -c <new-branch-name>
2020-07-15T16:59:03.8382665Z
2020-07-15T16:59:03.8382786Z Or undo this operation with:
2020-07-15T16:59:03.8382868Z
2020-07-15T16:59:03.8383124Z git switch -
2020-07-15T16:59:03.8383188Z
2020-07-15T16:59:03.8383320Z Turn off this advice by setting config variable advice.detachedHead to false
2020-07-15T16:59:03.8383416Z
2020-07-15T16:59:03.8383560Z HEAD is now at 2393753 Merge 3a1957493c277379fd0cda5f73102b03a0e8b12d into 1bba172e49814e428da143a17c32601aa48bf0f7
2020-07-15T16:59:03.8407581Z ##[endgroup]
2020-07-15T16:59:03.8407884Z ##[group]Setting up auth for fetching submodules
2020-07-15T16:59:03.8419301Z Temporarily overriding HOME='/home/runner/work/_temp/38e72f7e-44aa-4183-942f-8a47da87d87b' before making global git config changes
2020-07-15T16:59:03.8424067Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic ***
2020-07-15T16:59:03.8490179Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf
2020-07-15T16:59:03.8531817Z [command]/usr/bin/git config --global url.https://github.com/.insteadOf [email protected]:
2020-07-15T16:59:03.8568398Z ##[endgroup]
2020-07-15T16:59:03.8569045Z ##[group]Fetching submodules
2020-07-15T16:59:03.8572394Z [command]/usr/bin/git submodule sync
2020-07-15T16:59:03.8874326Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1
2020-07-15T16:59:03.9221331Z [command]/usr/bin/git submodule foreach git config --local gc.auto 0
2020-07-15T16:59:03.9503882Z ##[endgroup]
2020-07-15T16:59:03.9504751Z ##[group]Persisting credentials for submodules
2020-07-15T16:59:03.9510519Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :
2020-07-15T16:59:03.9817357Z [command]/usr/bin/git submodule foreach git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url
2020-07-15T16:59:04.0124180Z [command]/usr/bin/git submodule foreach git config --local 'url.https://github.com/.insteadOf' '[email protected]:'
2020-07-15T16:59:04.0446156Z ##[endgroup]
2020-07-15T16:59:04.0558389Z [command]/usr/bin/git log -1
2020-07-15T16:59:04.0601776Z commit 2393753072a8e718ba4c6235bf013a088905b04c
2020-07-15T16:59:04.0602478Z Author: Jesse Wolgamott <[email protected]>
2020-07-15T16:59:04.0602867Z Date: Wed Jul 15 16:57:56 2020 +0000
2020-07-15T16:59:04.0603140Z
2020-07-15T16:59:04.0603500Z Merge 3a1957493c277379fd0cda5f73102b03a0e8b12d into 1bba172e49814e428da143a17c32601aa48bf0f7
2020-07-15T16:59:04.0823949Z ##[group]Run Azure/[email protected]
2020-07-15T16:59:04.0824134Z with:
2020-07-15T16:59:04.0824695Z azure_static_web_apps_api_token: ***
2020-07-15T16:59:04.0825209Z repo_token: ***
2020-07-15T16:59:04.0825341Z action: upload
2020-07-15T16:59:04.0825458Z app_location: /
2020-07-15T16:59:04.0825573Z api_location: api
2020-07-15T16:59:04.0825693Z app_artifact_location: public
2020-07-15T16:59:04.0825814Z ##[endgroup]
2020-07-15T16:59:04.0850585Z ##[command]/usr/bin/docker run --name c201adbc7ac89ce6453d9b987031c03a57fe_b378e9 --label 87c201 --workdir /github/workspace --rm -e INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN -e INPUT_REPO_TOKEN -e INPUT_ACTION -e INPUT_APP_LOCATION -e INPUT_API_LOCATION -e INPUT_APP_ARTIFACT_LOCATION -e INPUT_API_BUILD_COMMAND -e INPUT_APP_BUILD_COMMAND -e INPUT_ROUTES_LOCATION -e HOME -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_SERVER_URL -e GITHUB_API_URL -e GITHUB_GRAPHQL_URL -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e RUNNER_OS -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/www.eogresources.com/www.eogresources.com":"/github/workspace" 87c201:adbc7ac89ce6453d9b987031c03a57fe
2020-07-15T16:59:06.3397464Z [37mDeploymentId: 6cbabcf4-77cd-492d-b5a1-ae710a2142f8[0m
2020-07-15T16:59:06.3397828Z [37m[0m
2020-07-15T16:59:06.4556987Z [37mApp Directory Location: '/' was found.[0m
2020-07-15T16:59:06.4573031Z [33m[WARNING] Api Directory Location: 'api' could not be found. Azure Functions will not be created.[0m
2020-07-15T16:59:07.1631773Z [37mStarting to build app with Oryx[0m
2020-07-15T16:59:07.1637803Z [33mAzure Static Web Apps utilizes Oryx to build both static applications and Azure Functions. You can find more details on Oryx here: https://github.com/microsoft/Oryx[0m
2020-07-15T16:59:07.1644779Z [37m---Oryx build logs---[0m
2020-07-15T16:59:07.1645081Z [37m[0m
2020-07-15T16:59:07.1645333Z [37m[0m
2020-07-15T16:59:07.9066681Z [37mBuild orchestrated by Microsoft Oryx, https://github.com/Microsoft/Oryx[0m
2020-07-15T16:59:07.9070433Z [37mYou can report issues at https://github.com/Microsoft/Oryx/issues[0m
2020-07-15T16:59:07.9077194Z [37m[0m
2020-07-15T16:59:07.9081867Z [37mOryx Version : 0.2.20200526.1, Commit: 400c4f0c491327b894c3bed2cfbe68376e17eabd, ReleaseTagName: 20200526.1[0m
2020-07-15T16:59:07.9085996Z [37mBuild Operation ID: |nlQmuDtJYvY=.5d39e52a_[0m
2020-07-15T16:59:07.9105224Z [37mRepository Commit : 2393753072a8e718ba4c6235bf013a088905b04c[0m
2020-07-15T16:59:07.9110439Z [37m[0m
2020-07-15T16:59:08.9663147Z [37mUsing intermediate directory '/bin/staticsites/ss-oryx/app-int'.[0m
2020-07-15T16:59:08.9692164Z [37m[0m
2020-07-15T16:59:08.9698296Z [37mIntermediate directory doesn't exist, creating it...'[0m
2020-07-15T16:59:08.9707641Z [37m[0m
2020-07-15T16:59:08.9708509Z [37mCopying files to the intermediate directory...[0m
2020-07-15T16:59:09.2625529Z [37mDone in 1 sec(s).[0m
2020-07-15T16:59:09.2628480Z [37m[0m
2020-07-15T16:59:09.2628892Z [37mSource directory : /bin/staticsites/ss-oryx/app-int[0m
2020-07-15T16:59:09.2629219Z [37mDestination directory: /bin/staticsites/ss-oryx/app[0m
2020-07-15T16:59:09.2629485Z [37m[0m
2020-07-15T16:59:09.2905130Z [37m[0m
2020-07-15T16:59:09.2905497Z [37mUsing Node version:[0m
2020-07-15T16:59:09.2938643Z [37mv12.16.3[0m
2020-07-15T16:59:09.2948389Z [37m[0m
2020-07-15T16:59:09.2953720Z [37mUsing Yarn version:[0m
2020-07-15T16:59:09.6119482Z [37m1.17.3[0m
2020-07-15T16:59:09.6267931Z [37m[0m
2020-07-15T16:59:09.6274437Z [37mInstalling production dependencies in '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules'...[0m
2020-07-15T16:59:09.6274865Z [37m[0m
2020-07-15T16:59:09.6275195Z [37mRunning 'yarn install --prefer-offline --production'...[0m
2020-07-15T16:59:09.6275460Z [37m[0m
2020-07-15T16:59:09.7871249Z [37myarn install v1.17.3[0m
2020-07-15T16:59:09.9216170Z [31mwarning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json.[0m
2020-07-15T16:59:09.9250122Z [37m[1/4] Resolving packages...[0m
2020-07-15T16:59:10.7473792Z [37m[2/4] Fetching packages...[0m
2020-07-15T16:59:36.3533085Z [37minfo [email protected]: The platform "linux" is incompatible with this module.[0m
2020-07-15T16:59:36.3581753Z [37minfo "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.[0m
2020-07-15T16:59:36.3615645Z [37minfo [email protected]: The platform "linux" is incompatible with this module.[0m
2020-07-15T16:59:36.3621182Z [37minfo "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.[0m
2020-07-15T16:59:36.3817140Z [37m[3/4] Linking dependencies...[0m
2020-07-15T16:59:36.3869560Z [31mwarning "gatsby > @pmmmwh/[email protected]" has incorrect peer dependency "react-refresh@^0.8.2".[0m
2020-07-15T16:59:36.4133764Z [31mwarning "gatsby > @typescript-eslint/eslint-plugin > [email protected]" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta".[0m
2020-07-15T16:59:36.4172550Z [31mwarning "gatsby-plugin-sass > [email protected]" has unmet peer dependency "webpack@^3.0.0 || ^4.0.0".[0m
2020-07-15T16:59:56.7733115Z [37m[4/4] Building fresh packages...[0m
2020-07-15T16:59:59.2408083Z [37mDone in 49.46s.[0m
2020-07-15T16:59:59.2779635Z [37m[0m
2020-07-15T16:59:59.2780812Z [37mCopying production dependencies from '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules' to '/bin/staticsites/ss-oryx/app-int/node_modules'...[0m
2020-07-15T17:00:10.3779142Z [37mDone in 11 sec(s).[0m
2020-07-15T17:00:10.3785964Z [37m[0m
2020-07-15T17:00:10.3786319Z [37mRunning 'yarn install --prefer-offline'...[0m
2020-07-15T17:00:10.3789080Z [37m[0m
2020-07-15T17:00:10.5451215Z [37myarn install v1.17.3[0m
2020-07-15T17:00:10.6760011Z [31mwarning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json.[0m
2020-07-15T17:00:10.7020361Z [37m[1/4] Resolving packages...[0m
2020-07-15T17:00:11.4594885Z [37m[2/4] Fetching packages...[0m
2020-07-15T17:00:12.4655890Z [37minfo [email protected]: The platform "linux" is incompatible with this module.[0m
2020-07-15T17:00:12.4664897Z [37minfo "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.[0m
2020-07-15T17:00:12.4724590Z [37minfo [email protected]: The platform "linux" is incompatible with this module.[0m
2020-07-15T17:00:12.4725040Z [37minfo "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.[0m
2020-07-15T17:00:12.4938863Z [37m[3/4] Linking dependencies...[0m
2020-07-15T17:00:12.4986301Z [31mwarning "gatsby > @pmmmwh/[email protected]" has incorrect peer dependency "react-refresh@^0.8.2".[0m
2020-07-15T17:00:12.5059332Z [31mwarning "gatsby > @typescript-eslint/eslint-plugin > [email protected]" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta".[0m
2020-07-15T17:00:12.5152215Z [31mwarning "gatsby-plugin-sass > [email protected]" has unmet peer dependency "webpack@^3.0.0 || ^4.0.0".[0m
2020-07-15T17:00:26.2612153Z [37m[4/4] Building fresh packages...[0m
2020-07-15T17:00:28.1853836Z [37mDone in 17.64s.[0m
2020-07-15T17:00:28.2239965Z [37m[0m
2020-07-15T17:00:28.2244838Z [37mRunning 'yarn run build'...[0m
2020-07-15T17:00:28.2245122Z [37m[0m
2020-07-15T17:00:28.3896571Z [37myarn run v1.17.3[0m
2020-07-15T17:00:28.4508993Z [37m$ gatsby build[0m
2020-07-15T17:00:31.4510931Z [37msuccess open and validate gatsby-configs - 0.044s[0m
2020-07-15T17:00:31.4516589Z [37msuccess load plugins - 0.070s[0m
2020-07-15T17:00:31.4517132Z [37msuccess onPreInit - 0.002s[0m
2020-07-15T17:00:31.4517651Z [37msuccess delete html and css files from previous builds - 0.009s[0m
2020-07-15T17:00:31.4518136Z [37msuccess initialize cache - 0.006s[0m
2020-07-15T17:00:31.4518604Z [37msuccess copy gatsby files - 0.036s[0m
2020-07-15T17:00:31.4519070Z [37msuccess onPreBootstrap - 0.012s[0m
2020-07-15T17:00:31.4869402Z [37msuccess createSchemaCustomization - 0.003s[0m
2020-07-15T17:00:31.5137241Z [37msuccess source and transform nodes - 0.022s[0m
2020-07-15T17:00:31.7153384Z [37msuccess building schema - 0.200s[0m
2020-07-15T17:00:31.7168839Z [37msuccess createPages - 0.000s[0m
2020-07-15T17:00:31.8337525Z [37msuccess createPagesStatefully - 0.116s[0m
2020-07-15T17:00:31.8595585Z [37msuccess updating schema - 0.025s[0m
2020-07-15T17:00:31.8604835Z [37msuccess onPreExtractQueries - 0.000s[0m
2020-07-15T17:00:31.8904962Z [37msuccess extract queries from components - 0.029s[0m
2020-07-15T17:00:31.8917936Z [37msuccess write out redirect data - 0.001s[0m
2020-07-15T17:00:31.8927248Z [37msuccess onPostBootstrap - 0.000s[0m
2020-07-15T17:00:31.8937538Z [37minfo bootstrap finished - 3.425s[0m
2020-07-15T17:00:31.9124880Z [37msuccess run page queries - 0.016s - 12/12 753.33/s[0m
2020-07-15T17:00:31.9166606Z [37msuccess write out requires - 0.004s[0m
2020-07-15T17:00:59.7131289Z [31mwarning Browserslist: caniuse-lite is outdated. Please run next commandyarn upgrade`[0m
2020-07-15T17:01:01.6219414Z [37msuccess Building production JavaScript and CSS bundles - 29.549s[0m
2020-07-15T17:01:01.7380960Z [37msuccess Rewriting compilation hashes - 0.002s[0m
2020-07-15T17:01:07.9807915Z [37msuccess Building static HTML for pages - 6.106s - 12/12 1.97/s[0m
2020-07-15T17:01:07.9839290Z [37msuccess onPostBuild - 0.002s[0m
2020-07-15T17:01:07.9861460Z [37minfo Done building in 39.517629722 sec[0m
2020-07-15T17:01:08.1651120Z [37mDone in 39.78s.[0m
2020-07-15T17:01:08.1790975Z [37m[0m
2020-07-15T17:01:08.1799424Z [37mCopy '/bin/staticsites/ss-oryx/app-int/node_modules' with all dependencies to '/bin/staticsites/ss-oryx/app-int/__oryx_all_node_modules'...[0m
2020-07-15T17:01:15.1093639Z [37m[0m
2020-07-15T17:01:15.1095026Z [37mCopying production dependencies from '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules/node_modules' to '/bin/staticsites/ss-oryx/app-int/node_modules'...[0m
2020-07-15T17:01:17.7027875Z [37m[0m
2020-07-15T17:01:17.7033879Z [37mCopying files to destination directory '/bin/staticsites/ss-oryx/app'...[0m
2020-07-15T17:01:30.3808625Z [37mDone in 13 sec(s).[0m
2020-07-15T17:01:30.7129031Z [37m[0m
2020-07-15T17:01:30.7130060Z [37mRemoving existing manifest file[0m
2020-07-15T17:01:30.7550269Z [37mCreating a manifest file...[0m
2020-07-15T17:01:30.7556020Z [37mManifest file created.[0m
2020-07-15T17:01:30.7556314Z [37m[0m
2020-07-15T17:01:30.7556586Z [37mDone in 142 sec(s).[0m
2020-07-15T17:01:32.6632671Z [37m[0m
2020-07-15T17:01:32.6633021Z [37m[0m
2020-07-15T17:01:32.6633307Z [37m---End of Oryx build logs---[0m
2020-07-15T17:01:32.6635940Z [37mFinished building app with Oryx[0m
2020-07-15T17:01:32.6704620Z [37mZipping App Artifacts[0m
2020-07-15T17:01:36.9742473Z [37mDone Zipping App Artifacts[0m
2020-07-15T17:01:36.9743156Z [33mEither no Api directory was specified, or the specified directory was not found. Azure Functions will not be created.[0m
2020-07-15T17:01:37.2585262Z [31mThe content server has rejected the request with: BadRequest[0m
2020-07-15T17:01:37.2586266Z [31mReason: The size of the app content was too large. The limit for this static site is 100000000 bytes.[0m
2020-07-15T17:01:37.2588853Z [33mExiting[0m
2020-07-15T17:01:50.9945051Z Post job cleanup.
2020-07-15T17:01:51.1117100Z [command]/usr/bin/git version
2020-07-15T17:01:51.1207906Z git version 2.27.0
2020-07-15T17:01:51.1259415Z [command]/usr/bin/git config --local --name-only --get-regexp core.sshCommand
2020-07-15T17:01:51.1319582Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-07-15T17:01:51.1605020Z [command]/usr/bin/git config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader
2020-07-15T17:01:51.1640502Z http.https://github.com/.extraheader
2020-07-15T17:01:51.1649571Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2020-07-15T17:01:51.1689535Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-07-15T17:01:51.2026205Z Cleaning up orphan processes
````
Hmm that is strange, I dont see anything obvious here. And just a quick sanity check, the resulting 'public' folder is <= 100 MB right? If not that is the current limit.
@miwebst correct. to confirm, I pulled it locally, ran the yarn build, and public was only 27mb.
node_modules was huge though, as befit a 2020 JS app, was over 400 mb.
I see, something is wrong here! Do you mind adding me as a contributor so I can see if I can see what Oryx is doing? If this site is sensitive then I can try to reproduce your setup (assuming Gatsby app with a lot of node modules)?
@miwebst I tried, but it's tied to just be in our organization. But here's the package.json for the gatsby app... maybe that can help with reproducibility?
If you have trouble, I can recreate this in a repo on _my_ github and invite you.
{
"name": "eog-site",
"private": true,
"description": "EOG landing site",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-brands-svg-icons": "^5.13.1",
"@fortawesome/free-regular-svg-icons": "^5.13.1",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"gatsby": "^2.23.21",
"gatsby-plugin-sass": "^2.1.27",
"gh-pages": "^3.1.0",
"node-sass": "^4.13.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-parallax": "^3.0.3",
"react-vertical-timeline-component": "^3.0.2",
"typeface-barlow": "^0.0.71",
"typeface-open-sans": "^0.0.75",
"typeface-rubik": "^0.0.72",
"typewriter-effect": "^2.13.1"
},
"devDependencies": {
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}
Do you mind copying it and inviting me? I tried to repro this on my Gatsby site but Oryx choose npm instead of yarn for the install which made things work. Need to investigate further though.
@miwebst just invited you to https://github.com/jwo/eogsite .. the branch that's failing is feature/pages
So I looked at the failing branch and I saw that the public folder is right around 100k bytes which is our limit today. Is that what you are also seeing?
@miwebst 100k? I may hav mis-converted but i thought the message said the limit was 100mb
Sorry I meant 100mb, that is the limit. Yes you should be far under the limit, let me dig deeper sorry for the false alarm.
Ok I think I understand what is going on now. So when I build that branch, the public folder is 97Mb. This is 3Mb under our limit, however our limit is currently checking 100M bytes rather than 100 * (number of bytes in a mb). Thus our limit is slightly off. I will make a work item for us to fix this, but it does seem that you are hitting the limit.
@miwebst I just noticed a 67MB video that snuck into the site on the failing branch; I think when I calculated the 27MB public size, I did so on master, not the failing branch.
tldr, I think Azure static sites doing everything correctly. I appreciate you looking into this for us, we'll move forward by hosting the video elsewhere.
Hello,
Despite this being closed, I am experiencing the same issue. I guess the size limit should be 100000000/(1024*1024) = 95.37 MB. My local repo size is ~85MB (without the hidden .git, if I add that is 180MB). Am I looking at the size correctly? Or am I totally missing something basic here?
Thank you
Action log, build and deploy:
DeploymentId: *
App Directory Location: '/' was found.
[WARNING] Api Directory Location: 'api' could not be found. Azure Functions will not be created.
Starting to build app with Oryx
Azure Static Web Apps utilizes Oryx to build both static applications and Azure Functions. You can find more details on Oryx here: https://github.com/microsoft/Oryx
---Oryx build logs---
Operation performed by Microsoft Oryx, https://github.com/Microsoft/Oryx
You can report issues at https://github.com/Microsoft/Oryx/issues
Oryx Version: 0.2.20200706.2, Commit: XXXXXXXXXXXXXXXXXXXXXXXX, ReleaseTagName: XXXXXX.X
Build Operation ID: *
Repository Commit : *
Detecting platforms...
Could not detect any platform in the source directory.
Error: Could not detect the language from repo.
---End of Oryx build logs---
Oryx was unable to determine the build steps. Continuing assuming the assets in this folder are already built. If this is an unexpected behavior please contact support.
Finished building app with Oryx
Zipping App Artifacts
Done Zipping App Artifacts
Either no Api directory was specified, or the specified directory was not found. Azure Functions will not be created.
The content server has rejected the request with: BadRequest
Reason: The size of the app content was too large. The limit for this static site is 100000000 bytes.
For further information, please visit the Azure Static Web Apps documentation at https://docs.microsoft.com/en-us/azure/static-web-apps/
If you believe this behavior is unexpected, please raise a Github issue at https://github.com/azure/static-web-apps/issues/
Exiting
Ah so including the .git folder in the size validation is a mistake and we are currently rolling out a fix for that. For the other limit we have made the change to move the limit back to 100MB but is currently just the 100 million byte limit.
The fix to ignore the .git folder in the size calculation should be available now, please let us know if you run into this again!
Most helpful comment
The fix to ignore the .git folder in the size calculation should be available now, please let us know if you run into this again!