-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
46 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ permissions: | |
contents: read | ||
|
||
jobs: | ||
integration-tests-azure: | ||
integration-tests-fabric-dw: | ||
name: Regular | ||
strategy: | ||
fail-fast: false | ||
|
@@ -24,48 +24,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: List containers in GitHub Container Registry | ||
run: docker images | ||
|
||
- name: List containers with GitHub API | ||
run: | | ||
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
https://api.github.com/orgs/microsoft/packages?package_type=container | ||
- name: Pull Docker image | ||
run: docker pull ghcr.io/microsoft/dbt-fabric:CI-3.11-msodbc17 | ||
|
||
# Azure login using federated credentials | ||
- name: Azure login with OIDC | ||
uses: azure/login@v2 | ||
with: | ||
client-id: ${{ secrets.DBT_AZURE_SP_NAME }} | ||
tenant-id: ${{ secrets.DBT_AZURE_TENANT }} | ||
allow-no-subscriptions: true | ||
federated-token: true | ||
|
||
|
||
# Get an access token for a specific resource (e.g., a database) | ||
- name: Get Azure Access Token | ||
id: get-token | ||
run: | | ||
TOKEN=$(az account get-access-token --resource "https://database.windows.net//.default" --query accessToken -o tsv) | ||
echo "::add-mask::$TOKEN" # Mask the token in the logs | ||
echo "ACCESS_TOKEN=$TOKEN" >> $GITHUB_ENV | ||
echo "Token fetched successfully" | ||
# Print the token (for debugging) | ||
- name: Print Access Token | ||
run: | | ||
echo "Access Token: ${{ env.ACCESS_TOKEN }}" | ||
- name: Azure Login | ||
uses: azure/login@v1 | ||
with: | ||
client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
federated-token: ${{ secrets.GITHUB_TOKEN }} | ||
allow-no-subscriptions: true |