Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/actions/cache-4
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko authored Mar 11, 2024
2 parents 7e4390e + e743318 commit 2007e40
Show file tree
Hide file tree
Showing 47 changed files with 12,143 additions and 9,539 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20

- name: Cache JS bundle
id: cache-js-bundle-v2
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codequality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
schedule:
- cron: '0 6 * * 1,4' # at 06:00 UTC on Monday and Thursday

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
code-quality:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
schedule:
- cron: '0 6 * * 1,4' # at 06:00 UTC on Monday and Thursday

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
SOLARA_TELEMETRY_MIXPANEL_TOKEN: adbf863d17cba80db608788e7fce9843
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
schedule:
- cron: '0 6 * * 1,4' # at 06:00 UTC on Monday and Thursday

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
SOLARA_TELEMETRY_MIXPANEL_TOKEN: adbf863d17cba80db608788e7fce9843
Expand Down Expand Up @@ -53,7 +57,7 @@ jobs:
run: mkdir test-results
- name: Install
run: |
pip install ".[dev,server,flask,documentation,pytest]" "voila~=${{ matrix.voila }}" "jupyterlab<4" "pydantic<2"
pip install ".[dev,server,flask,documentation,pytest]" "voila~=${{ matrix.voila }}" "jupyterlab<4" "pydantic<2" "playwright==1.41.2"
(cd packages/solara-enterprise && pip install ".[ssg,auth]" "ipywidgets~=${{ matrix.ipywidgets }}")
- name: Install playwright
run: playwright install
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/integration_vue3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
schedule:
- cron: "0 6 * * 1,4" # at 06:00 UTC on Monday and Thursday

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
SOLARA_TELEMETRY_MIXPANEL_TOKEN: adbf863d17cba80db608788e7fce9843
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
schedule:
- cron: '0 6 * * 1,4' # at 06:00 UTC on Monday and Thursday

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -25,7 +29,7 @@ jobs:
python-version: 3.7
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20
- name: Install hatch
run: pip install hatch
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: python -c "import solara_enterprise"
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20
- name: Build assets
run: (cd packages/assets; hatch build)
- name: Publish solara-enterprise to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_solara_vuetify_app-v3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: "14.x"
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Build the JS packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_solara_vuetify_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: "14.x"
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Build the JS packages
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
schedule:
- cron: '0 6 * * 1,4' # at 06:00 UTC on Monday and Thursday

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
SOLARA_TELEMETRY_MIXPANEL_TOKEN: adbf863d17cba80db608788e7fce9843
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/webdeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ defaults:
run:
shell: bash -l {0}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
update-ssg:
name: Update server side generated pages
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ meeting
/**/.ipynb_checkpoints
#app
dist
lib
python/.idea
test/.idea
venv
Expand Down
Loading

0 comments on commit 2007e40

Please sign in to comment.