Remove our custom credentials provider #51
Workflow file for this run
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
name: "Tests / Tutorials" | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '**.scala' | |
- '**.sbt' | |
pull_request: | |
paths: | |
- '**.scala' | |
- '**.sbt' | |
env: | |
TUTORIAL_DIR: docs/source/tutorials/dynamodb-to-scylladb-alternator | |
jobs: | |
test: | |
name: DynamoDB migration | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Docker images | |
uses: ScribeMD/[email protected] | |
with: | |
key: docker-${{ runner.os }}-${{ hashFiles('docs/source/tutorials/dynamodb-to-scylladb-alternator/docker-compose.yaml') }} | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 8 | |
cache: sbt | |
- name: Build migrator | |
run: | | |
./build.sh | |
mv migrator/target/scala-2.13/scylla-migrator-assembly.jar "$TUTORIAL_DIR/spark-data" | |
- name: Set up services | |
run: | | |
cd $TUTORIAL_DIR | |
docker compose up -d | |
- name: Wait for the services to be up | |
run: | | |
.github/wait-for-port.sh 8000 # DynamoDB | |
.github/wait-for-port.sh 8001 # ScyllaDB Alternator | |
.github/wait-for-port.sh 8080 # Spark master | |
.github/wait-for-port.sh 8081 # Spark worker | |
- name: Run tutorial | |
run: | | |
cd $TUTORIAL_DIR | |
aws configure set region us-west-1 | |
aws configure set aws_access_key_id dummy | |
aws configure set aws_secret_access_key dummy | |
sed -i 's/seq 1 40000/seq 1 40/g' ./create-data.sh | |
./create-data.sh | |
. ./run-migrator.sh | |
- name: Stop services | |
run: | | |
cd $TUTORIAL_DIR | |
docker compose down |