Compare commits

...

11 Commits

Author SHA1 Message Date
Peter Allen Webb
e6a0a1a86a Remove source indicator. 2025-03-04 11:43:12 -05:00
Peter Allen Webb
e8d10ea3c3 Add source indicator. 2025-03-04 11:33:06 -05:00
Peter Allen Webb
c6a18a3fb0 Change script invocation path. 2025-03-04 11:23:41 -05:00
Peter Allen Webb
18ea5d1c73 More debug logging. 2025-03-04 11:15:50 -05:00
Peter Allen Webb
0e5dc412c6 Set execute bit on scripts. 2025-03-04 11:11:44 -05:00
Peter Allen Webb
463bb6c1d0 Add debug logging. 2025-03-04 11:07:25 -05:00
Peter Allen Webb
f1fc49ba8c Add sudos. 2025-03-04 10:57:27 -05:00
Peter Allen Webb
2e4eccb55c Change owner of db creation script so postgres can run it. 2025-03-04 10:53:56 -05:00
Emily Rockman
0e5761dbbb try postgres update 2025-03-04 08:58:06 -06:00
Emily Rockman
8c3b1799a7 updates to ubuntu-latest instead 2025-03-04 08:43:31 -06:00
Emily Rockman
466ee24b86 update ubuntu 20.04 to 24.04 2025-03-04 08:35:25 -06:00
5 changed files with 15 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ body:
label: Environment
description: |
examples:
- **OS**: Ubuntu 20.04
- **OS**: Ubuntu 24.04
- **Python**: 3.9.12 (`python3 --version`)
- **dbt-core**: 1.1.1 (`dbt --version`)
value: |

View File

@@ -55,7 +55,7 @@ body:
label: Environment
description: |
examples:
- **OS**: Ubuntu 20.04
- **OS**: Ubuntu 24.04
- **Python**: 3.9.12 (`python3 --version`)
- **dbt-core (working version)**: 1.1.1 (`dbt --version`)
- **dbt-core (regression version)**: 1.2.0 (`dbt --version`)

View File

@@ -11,9 +11,17 @@ runs:
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc|sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
sudo apt update -y
sudo apt install postgresql-16
sudo apt install postgresql-17
sudo apt-get -y install postgresql postgresql-contrib
sudo systemctl start postgresql
sudo systemctl enable postgresql
pg_isready
sudo -u postgres bash ${{ github.action_path }}/setup_db.sh
echo "Updating setup_db.sh script ownership and execute bit"
sudo chown postgres ${{ github.action_path }}/../../../test/setup_db.sh
sudo chown postgres ${{ github.action_path }}/setup_db.sh
sudo chmod +x ${{ github.action_path }}/../../../test/setup_db.sh
sudo chmod +x ${{ github.action_path }}/setup_db.sh
ls -la ${{ github.action_path }}/../../../test/setup_db.sh
ls -la ${{ github.action_path }}/setup_db.sh
echo "Running setup_db.sh"
sudo -u postgres bash ${{ github.action_path }}/../../../test/setup_db.sh

View File

@@ -163,8 +163,9 @@ jobs:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
os: [ubuntu-20.04]
os: [ubuntu-latest]
split-group: ${{ fromJson(needs.integration-metadata.outputs.split-groups) }}
# this include is where we add the mac and windows os
include: ${{ fromJson(needs.integration-metadata.outputs.include) }}
env:
TOXENV: integration

View File

@@ -45,7 +45,7 @@ jobs:
# run the performance measurements on the current or default branch
test-schema:
name: Test Log Schema
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- integration-metadata