Skip to content

Commit

Permalink
Bump to latest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Oct 20, 2023
1 parent e2e98ce commit 1fc3586
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
submodules: 'recursive'

- name: Lint ./lib
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
python3 ./scripts/run_clang_format.py \
Expand Down Expand Up @@ -50,25 +50,25 @@ jobs:
${{ runner.os }}-yarn-
- name: Prepare repository
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
yarn install --frozen-lockfile --prefer-offline
- name: Lint @duckdb/duckdb-wasm
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
yarn workspace @duckdb/duckdb-wasm run lint
- name: Lint @duckdb/duckdb-wasm-shell
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
yarn workspace @duckdb/duckdb-wasm-shell run lint
- name: Lint @duckdb/benchmarks
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
yarn workspace @duckdb/benchmarks run lint
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Build generator
if: steps.cache-generator.outputs.cache-hit != 'true'
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
make -C ./submodules/tpch-dbgen/dbgen/ dbgen
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
${{ runner.os }}-dataprep-
- name: Build generator
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
cargo build --manifest-path=./Cargo.toml --release -p dataprep
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
${{ runner.os }}-duckdb-
- name: Build DuckDB shell
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
ccache -z
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
[ -f duckdb.patch ] && cd submodules/duckdb && git apply ../../duckdb.patch || echo "No patching needed"
- name: Prepare environment
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
mkdir -p ./lib/build/debug ./reports
Expand All @@ -233,7 +233,7 @@ jobs:
ccache -s
- name: Build project
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
cmake \
Expand All @@ -250,7 +250,7 @@ jobs:
ccache -s
- name: Test project
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
export LLVM_PROFILE_FILE=./reports/lib.profraw
Expand All @@ -259,7 +259,7 @@ jobs:
--gtest_output=xml:./reports/tests_lib_debug.xml
- name: Code Coverage
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
llvm-profdata merge \
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
[ -f duckdb.patch ] && cd submodules/duckdb && git apply ../../duckdb.patch || echo "No patching needed"
- name: Prepare environment
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
mkdir -p ./lib/build/release ./reports
Expand All @@ -329,7 +329,7 @@ jobs:
ccache -s
- name: Build project
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
cmake \
Expand All @@ -346,7 +346,7 @@ jobs:
ccache -s
- name: Test project
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
export LLVM_PROFILE_FILE=./reports/lib.profraw
Expand All @@ -355,7 +355,7 @@ jobs:
--gtest_output=xml:./reports/tests_lib_release.xml
- name: Code Coverage
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
llvm-profdata merge \
Expand Down Expand Up @@ -667,7 +667,7 @@ jobs:
(cd ./submodules/duckdb && git fetch --all --tags)
- name: Prepare environment
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -706,7 +706,7 @@ jobs:
CHROME_BIN=`which google-chrome` yarn workspace @duckdb/duckdb-wasm test:chrome
# - name: Test @duckdb/duckdb-wasm on Firefox
# uses: duckdb/duckdb-wasm-ci-env@v0.11
# uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
# with:
# script: |-
# yarn workspace @duckdb/duckdb-wasm test:firefox
Expand Down Expand Up @@ -776,7 +776,7 @@ jobs:

- name: Preparation TPCH 0.01
if: github.ref == 'refs/heads/main'
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -810,7 +810,7 @@ jobs:

- name: Preparation TPCH 0.1
if: github.ref == 'refs/heads/main'
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -844,7 +844,7 @@ jobs:

- name: Preparation TPCH 0.25
if: github.ref == 'refs/heads/main'
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -878,7 +878,7 @@ jobs:

- name: Preparation TPCH 0.5
if: github.ref == 'refs/heads/main'
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -996,7 +996,7 @@ jobs:
(cd ./submodules/duckdb && git fetch --all --tags)
- name: Prepare environment
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -1035,7 +1035,7 @@ jobs:
CHROME_BIN=`which google-chrome` yarn workspace @duckdb/duckdb-wasm test:chrome
# - name: Test @duckdb/duckdb-wasm on Firefox
# uses: duckdb/duckdb-wasm-ci-env@v0.11
# uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
# with:
# script: |-
# yarn workspace @duckdb/duckdb-wasm test:firefox
Expand Down Expand Up @@ -1128,7 +1128,7 @@ jobs:
retention-days: 1

- name: Merge benchmark reports
uses: duckdb/duckdb-wasm-ci-env@v0.11
uses: duckdb/duckdb-wasm-ci-env@ae43fa250a6b6ba92fe3d825c6c34b6d68a258a0
with:
script: |-
chmod +x ./target/release/dataprep
Expand Down

0 comments on commit 1fc3586

Please sign in to comment.