-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add to_utc_timestamp support in more dialects (#420)
* Add support for to_utc_timestamp in more dialects * Use setup-pixi action * Manual pixi installation * again
- Loading branch information
Showing
9 changed files
with
349 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,10 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
cache: true | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -37,14 +39,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi (linux / osx) | ||
if: ${{ runner.os != 'Windows' }} | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- name: Install pixi (windows) | ||
if: ${{ runner.os == 'Windows' }} | ||
run: | | ||
iwr -useb https://pixi.sh/install.ps1 | iex | ||
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -71,8 +68,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi (linux / osx) | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -158,10 +156,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: | | ||
iwr -useb https://pixi.sh/install.ps1 | iex | ||
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -186,8 +183,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -212,8 +210,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -239,8 +238,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi (linux / osx) | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -265,8 +265,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi (linux / osx) | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -401,8 +402,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi on linux | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -452,8 +454,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -560,10 +563,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: | | ||
iwr -useb https://pixi.sh/install.ps1 | iex | ||
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -593,8 +595,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -623,8 +626,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -36,8 +37,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -64,8 +66,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -94,10 +97,17 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
# # Using pixi action here results in error on cleanup: | ||
# # EBUSY: resource busy or locked, unlink 'D:\a\vegafusion\vegafusion\.pixi\env\Library\lib\jvm\lib\modules' | ||
# - uses: prefix-dev/[email protected] | ||
# with: | ||
# pixi-version: v0.7.0 | ||
# # So use manual install for now | ||
- name: Install pixi | ||
run: | | ||
iwr -useb https://pixi.sh/install.ps1 | iex | ||
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
echo "${HOME}\.pixi\bin" | ||
echo "${HOME}\.pixi\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -129,8 +139,9 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected] | ||
- name: Install pixi | ||
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.