Skip to content

Commit

Permalink
Merge pull request #2776 from responsible-ai-collaborative/staging
Browse files Browse the repository at this point in the history
Deploy to production
  • Loading branch information
kepae authored May 6, 2024
2 parents 6570c0f + 1d4569e commit 4094e87
Show file tree
Hide file tree
Showing 12 changed files with 1,040 additions and 269 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ jobs:
runs-on:
labels: ${{ inputs.runner-label || 'ubuntu-latest' }}
steps:
- name: Cleanup Disk Space
run: |
echo "Before removing files:"
df -h
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "After removing files:"
df -h
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ on:
type: string
required: false
default: ""

env:
UV_THREADPOOL_SIZE: 12

jobs:
test:
Expand Down Expand Up @@ -127,7 +124,6 @@ jobs:
CLOUDFLARE_R2_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }}
CLOUDFLARE_R2_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }}
REALM_GRAPHQL_API_KEY: ${{ secrets.REALM_GRAPHQL_API_KEY }}

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
Expand Down
6 changes: 3 additions & 3 deletions site/gatsby-site/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ module.exports = defineConfig({
video: false,
chromeWebSecurity: false,
screenshotOnRunFailure: false,
defaultCommandTimeout: 8000,
pageLoadTimeout: 120000,
requestTimeout: 8000,
defaultCommandTimeout: 24000,
requestTimeout: 60000,
responseTimeout: 60000,
retries: {
runMode: 2,
openMode: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('Checklists App Form', () => {
});
};

it('Should have read-only access for non-logged-in users', () => {
it.skip('Should have read-only access for non-logged-in users', () => {
interceptFindChecklist(defaultChecklist);

cy.visit(url);
Expand Down
Loading

0 comments on commit 4094e87

Please sign in to comment.