Merge branch 'master' into feat/db

This commit is contained in:
Gabriel Horner
2023-11-09 11:30:15 -05:00
18 changed files with 851 additions and 738 deletions

View File

@@ -41,7 +41,7 @@ on:
required: true
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '17'

View File

@@ -47,7 +47,7 @@ on:
- cron: '0 14 * * MON-FRI'
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '11'
@@ -354,6 +354,11 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
@@ -434,6 +439,11 @@ jobs:
restore-keys: |
${{ runner.os }}-arm64-yarn-
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Signing By Apple Developer ID
if: ${{ github.repository == 'logseq/logseq' }}
uses: apple-actions/import-codesign-certs@v1

View File

@@ -7,7 +7,7 @@ on:
types: [released]
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
jobs:

View File

@@ -11,7 +11,7 @@ on:
default: "master"
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '11'

View File

@@ -16,7 +16,7 @@ on:
- package.json
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '11'

View File

@@ -7,6 +7,11 @@ on:
release:
types: [released]
env:
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '17'
jobs:
build:
runs-on: ubuntu-latest
@@ -17,20 +22,20 @@ jobs:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v3
with:
java-version: 1.8
distribution: 'zulu'
java-version: ${{ env.JAVA_VERSION }}
- name: Set up Node
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 18
node-version: ${{ env.NODE_VERSION }}
- name: Install clojure
run: |
curl -O https://download.clojure.org/install/linux-install-1.10.1.763.sh
chmod +x linux-install-1.10.1.763.sh
sudo ./linux-install-1.10.1.763.sh
- name: Setup clojure
uses: DeLaGuardo/setup-clojure@10.1
with:
cli: ${{ env.CLOJURE_VERSION }}
- name: Fetch yarn deps
run: yarn cache clean && yarn install --frozen-lockfile

View File

@@ -11,7 +11,7 @@ on:
- '*.md'
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'

View File

@@ -20,7 +20,7 @@ defaults:
working-directory: deps/db
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'

View File

@@ -15,7 +15,7 @@ on:
- 'e2e-tests/**'
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'

View File

@@ -24,7 +24,7 @@ defaults:
working-directory: deps/graph-parser
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
# This is the same as 1.8.
JAVA_VERSION: '11'
# This is the latest node version we can run.

View File

@@ -20,7 +20,7 @@ defaults:
working-directory: deps/common
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'
@@ -109,4 +109,4 @@ jobs:
run: bb lint:large-vars
- name: Lint for namespaces that aren't documented
run: bb lint:ns-docstrings
run: bb lint:ns-docstrings

View File

@@ -24,7 +24,7 @@ defaults:
working-directory: deps/publishing
env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
# This is the same as 1.8.
JAVA_VERSION: '11'
# This is the latest node version we can run.