![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@expo/eas-build-job
Advanced tools
@expo/eas-build-job is a package designed to facilitate the creation and management of build jobs for Expo applications using the Expo Application Services (EAS). It provides tools and utilities to define, configure, and execute build jobs for different platforms, such as iOS and Android, in a streamlined and efficient manner.
Creating a Build Job
This feature allows you to create a build job for an iOS project. You can specify the type of job, the platform, the root directory of the project, and the build profile to use.
{
"type": "eas-build-job",
"platform": "ios",
"projectRootDirectory": "./",
"buildProfile": "production"
}
Configuring Build Credentials
This feature allows you to configure build credentials for an Android project. You can specify the keystore information required for signing the APK.
{
"type": "eas-build-job",
"platform": "android",
"projectRootDirectory": "./",
"buildProfile": "production",
"credentials": {
"keystore": {
"dataBase64": "<base64-encoded-keystore>",
"keystorePassword": "<keystore-password>",
"keyAlias": "<key-alias>",
"keyPassword": "<key-password>"
}
}
}
Running a Build Job
This feature allows you to run a build job programmatically. You can define the build job configuration and use the `runBuildJob` function to execute it, handling the result or any errors that occur.
const { runBuildJob } = require('@expo/eas-build-job');
const buildJob = {
type: 'eas-build-job',
platform: 'ios',
projectRootDirectory: './',
buildProfile: 'production'
};
runBuildJob(buildJob).then(result => {
console.log('Build completed:', result);
}).catch(error => {
console.error('Build failed:', error);
});
Fastlane is an open-source platform aimed at simplifying Android and iOS deployment. It allows you to automate the entire build and release process, including beta deployment and release to the app store. Compared to @expo/eas-build-job, Fastlane offers a broader range of automation tools and is not limited to Expo projects.
CircleCI is a continuous integration and delivery platform that supports various programming languages and frameworks, including mobile app development. It offers robust tools for automating the build, test, and deployment processes. While @expo/eas-build-job is focused on Expo projects, CircleCI provides a more general-purpose CI/CD solution.
FAQs
`@expo/eas-build-job` contains types and Joi schemas for job objects. It's used in `eas-cli` to create the job object and on EAS Build workers (and in `eas-cli-local-build-plugin`) to process the job and run the build.
The npm package @expo/eas-build-job receives a total of 80,769 weekly downloads. As such, @expo/eas-build-job popularity was classified as popular.
We found that @expo/eas-build-job demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 28 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.